JSFiddle - React, Tailwind, and code Playground
HTML
<div class="fixed">
<div class="center"></div>
</div>
CSS
body {
height: 4000px;
}
.fixed {
position: fixed;
width: 100%;
height: 40px;
background: tomato;
text-align: center;
}
.center {
display: inline-block;
width: 300px;
height: 40px;
background: blue;
}