JSFiddle - React, Tailwind, and code Playground
HTML
<header class="header">
<div class="title">
<h1>Home</h1>
</div>
<div class="logo">
<img src="#" alt="Logo">
</div>
<div class="account">
<div class="options">
</div>
<div class="search">
</div>
</div>
</header>
CSS
body, html, header {
width: 100%;
}
header {
height: 4.1rem;
}
header > div {
width: 33%;
}
header div {
float: left;
height: 4.1rem;
line-height: 4.1rem;
color: #fff;
}
header div.title h1 {
font-weight: normal;
font-size: 3rem;
padding: 0;
margin: 0;
}
header div.logo {
text-align: center;
}
header .options {
width: 50%;
background-color: red;
height: 100px;
}
header .search {
width: 50%;
background-color: blue;
height: 100px;
}