JSFiddle - React, Tailwind, and code Playground
by Oliver_kh
HTML
<img id="as" src="http://upatov.com/content/img/portf/googleblogrussia.jpg" alt="Превью работы">
CSS
body {
height:5000px;
}
img {
width:500px;
}
JavaScript
$(function () {
var h = $('body').height();
$('#as').height(h);
});