JSFiddle - React, Tailwind, and code Playground
by ponyspy
HTML
<div class="content">
<div class="outer">
<div class="title">Привет</div>
<div class="one">
<div class="two">Колонка</div>
</div>
</div>
</div>
CSS
html, body {
margin: 0;
padding: 0;
}
html, body, .content, .outer {
height: 100%;
}
.content {
width: 100%;
background-color: green;
}
.outer {
width: 500px;
height: 0;
margin: 0 auto;
background-color: blue;
}