JSFiddle - React, Tailwind, and code Playground
by Mehmet Yener
HTML
Window Height : <span id="height"></span>
Window Width : <span id="width"></span>
<div class="Desktop"
CSS
@media screen and (max-width: 1024px){
img.bg {
left: 50%;
margin-left: -512px; }
}
JavaScript
$("#height").text($(window).height());
$("#width").text($(window).width());
$(window).resize(function() {
$("#height").text($(window).height());
$("#width").text($(window).width());
});