JSFiddle - React, Tailwind, and code Playground

by Alessander Costa

HTML

<div id='penguin'><img src="http://images.all-free-download.com/images/graphiclarge/penguin_clip_art_7050.jpg" ></div>

CSS

@media (max-width: 500px) {
    img{
        width:32px;
        height:32px;
    }
    
}

@media (min-width: 501px) {
    img{
        width:40px;
        height:40px;
    }
    
}