JSFiddle - React, Tailwind, and code Playground
HTML
<table cellpadding="0" cellspacing="0">
<tbody>
<tr>
<td>
<img src="http://www.nasa.gov/sites/all/themes/custom/NASAOmegaHTML5/images/nasa-logo.png" />
</td>
</tr>
</tbody>
</table>
CSS
* {
border: none;
margin: 0;
padding: 0;
}
table {
position: absolute;
left: 50%;
top: 50%;
width: 110px;
height: 92px;
margin-left: -55px;
margin-top: -46px;
}
img {
width: 110px;
height: 92px;
vertical-align:middle;
}
JavaScript
$('body').append($('td', $('body')).height());