JSFiddle - React, Tailwind, and code Playground

by minh vi

HTML

<div id="wrap">
    <div id="header">
        <dl id="site_nav_global_primary">
            <dt>test</dt>
        </dl>
    </div>
</div>

CSS

div {
    background-color: rgba(0,0,0,0.4);
}
#wrap {
margin:0 auto;
width:100%;
min-width:760px;
max-width:1003px;
overflow:hidden;
    height: 200px;
}

#header {
width:100%;
float:left;
padding-top:18px;
margin-bottom:29px;
    height: 100px;
}

#site_nav_global_primary {
    position: absolute;
    top:0;
    left: 20px;
    right: 30px;
    background-color: green;
   
}