JSFiddle - React, Tailwind, and code Playground
HTML
<div id="container">
<ul>
<li><a href="#first">first</a></li>
<li><a href="#second">second</a></li>
<li><a href="#third">third</a></li>
</ul>
<div id="someconteiner">
<div id="first">
</div>
<div id="second">
</div>
<div id="third">
</div>
</div>
</div>
CSS
ul {
background: red;
height: 50px;
position: fixed;
width: 100%;
top: 0
}
ul li {
display: inline;
}
#first {
background: #fc0;
height: 150px
}
#second {
background: #f0c;
height: 150px
}
#third {
background: #c0f;
height: 150px
}