JSFiddle - React, Tailwind, and code Playground

HTML

<div class="maincontent" style="background:darkgrey;min-height:550px;width:300px;">
    <p>Full opacity</p>
    <div class="imgwrapper" style="background:red; display:inline-block">
        <img src="http://icons.iconarchive.com/icons/tristan-edwards/sevenesque/1024/Preview-icon.png" style="background:red; width:300px;"/>
    </div>
    <br/><br/>
    <p>0.2 opacity</p>
    <div class="imgwrapper" style="background:red; display:inline-block">
        <img src="http://icons.iconarchive.com/icons/tristan-edwards/sevenesque/1024/Preview-icon.png" style="background:red; opacity:0.2; width:300px;"/>
    </div>
</div>