JSFiddle - React, Tailwind, and code Playground
by Benjamín Ariel Nava Martínez
HTML
<body>
<div id="Fondo">
<img id="Imagen" src="http://riverboatsmusic.com.au/wp-content/uploads/2014/09/1shuu4q3.wizardchan.test_.png" width="20%" height="20%" />
</div>
</body>
CSS
body {
width=100%, height=100%;
}
div#Fondo {
width:100%;
height:100%;
background: tomato;
}
img#Imagen {
display: block;
margin: 0 auto 0 auto;
}