JSFiddle - React, Tailwind, and code Playground

by Fredy Sudhir

HTML

<div id = "content">
        hello there
       </div>

CSS

html{
            background:yellow;
         }
         #content{
            width:976px;
            height:2000px;
            background:red;
            border:solid 2px green;
            font-size:20px;
         }
         body, html{
             padding:0;
             margin:0;
             width:980px;
         }

@media (max-width: 980px){
    html, body{
        width:100%;
        box-sizing:border-box;
    }

#content{
    width:96%;
    margin:0 auto;
}