JSFiddle - React, Tailwind, and code Playground
HTML
<div class="test"></div>
<div class="test fixed"></div>
CSS
.test{
float:left;
width:100%;
height:40px;
background-color:#ccc;
}
.fixed{
position:fixed;
top:60px
}
<div class="test"></div>
<div class="test fixed"></div>
.test{
float:left;
width:100%;
height:40px;
background-color:#ccc;
}
.fixed{
position:fixed;
top:60px
}