JSFiddle - React, Tailwind, and code Playground
by stackmanoz
HTML
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<p></p>
<p></p>
<p></p>
<p></p>
<p></p>
<p></p>
CSS
div{
width : 500px;
height : 200px;
margin : 10px;
background-color : blue;
}
p{
width : 300px;
height : 100px;
margin : 10px;
background-color : red;
}
JavaScript
$(window).resize(function(){
if($(window).width() < 600){
$('body').hide();
}else{
$('body').show()
}
})