JSFiddle - React, Tailwind, and code Playground
by lichangwei
HTML
<div class="fixed-center-wrap">
<div class="fixed-center"></div>
</div>
CSS
html, body{
width: 100%;
height: 100%;
}
.fixed-center-wrap{
display: fixed;
width: 100%;
height: 100%;
}
.fixed-center{
position: relative;
top: 50%;
left: 50%;
width: 200px;
height: 200px;
transform: translate(-50%, -50%);
background: #666;
}