JSFiddle - React, Tailwind, and code Playground

by Nikolay Vasilchuk

HTML

<header>
    <div class="logo"></div>
    <div class="info"></div>
    <div class="phone"></div>
</header>
<section></section>

CSS

header {
    overflow: hidden;
    width: 100%;
}
.logo {
    background: red;
    width: 100px;
    height: 50px;
    float: left;
}
.info {
    background: green;
    width: 100px;
    height: 50px;
    float: left;
}
.phone {
    background: blue;
    width: 100px;
    height: 50px;
    float: right;
}
section {
    width: 100%;
    min-height: 200px;
    background: gray;
}