JSFiddle - React, Tailwind, and code Playground
by DeadByElpy
HTML
<div class="page">
<h1>123123123213213</h1>
<div class="center">
<ul class="list">
<li>11111111111111111111111111111111111111111111111111111111111111111111111111</li>
<li>22222222222222222222222222222222222222222222222222222222222222222222222222</li>
<li>3</li>
</ul>
</div>
</div>
CSS
.page {
width: 600px;
height: 400px;
position: relative;
border: 1px solid #000;
}
.center {
width: 300px;
height: 200px;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
border: 1px solid #cf0;
}
.container {
border: 1px solid #0fc;
}
.list {
position: relative;
margin-top: -40px;
width: 500px;
height: auto;
border: 1px solid #ffc;
}