JSFiddle - React, Tailwind, and code Playground

by Oliver_kh

HTML

<div class="header">
    <div class="left">я левый</div>
    <div class="right">я правый</div>
    <div class="center">я посерединке</div>
</div>

CSS

.header {
    width:500px;
    background:#eee;
}
.left {
    float:left;
}
.right {
    float:right;
}
.center {
    text-align: center;
}