JSFiddle - React, Tailwind, and code Playground
HTML
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
</head>
<script>
alert("width : "+window.innerWidth+", height : "+window.innerHeight);
$().ready(function(){
$("p").css({width:window.innerWidth-2,height:window.innerHeight-2,border:'1px solid red'})
})
</script>
<body>
<p>About Web Design and HTML</p>
</body>
</html>