JSFiddle - React, Tailwind, and code Playground

HTML

<div><img src="http://dl.dropbox.com/u/60476509/close.svg" /></div>
<div><img id="one" src="http://dl.dropbox.com/u/60476509/close.svg" /></div>
<div id="two"></div>
<div id="three"></div>

CSS

#one {
        width: 200px;
        height: 200px;
    }
    
    #two {
        background-image: url("http://dl.dropbox.com/u/60476509/close.svg");
        height: 100px;
        width: 100px;
        background-size: contain;        
    }
    #three {
        background-image: url("http://dl.dropbox.com/u/60476509/close.svg");
        height: 200px;
        width: 200px;
        background-size: cover;        
    }