JSFiddle - React, Tailwind, and code Playground

by willianjohns

HTML

<div>
        <img src="http://upload.wikimedia.org/wikipedia/en/b/bc/Wiki.png" class="responsiveImage">
    </div>

CSS

div { 
        max-width:0%;
        width:20%;
        background-color:red;
        border:solid 1px blue;
    }
    img.responsiveImage {
        width:20%;
        margin:0 auto;
        background-color:red;
    }