JSFiddle - React, Tailwind, and code Playground
by beneverard
HTML
<div class="gallery">
<img src="http://dl.dropbox.com/u/813705/BEMotorsport/images/lambo.jpg" />
</div>
CSS
body {
background-color: black;
}
.gallery {
border: 1px solid red;
height: 300px;
width: 400px;
padding: 10px;
position: relative;
}
img {
height: auto;
width: 100%;
margin: auto;
top: 0;
right: 0;
bottom: 0;
left: 0;
position: absoulte;
}