JSFiddle - React, Tailwind, and code Playground
by yodapt
HTML
<div id="header">
<div class="block">
<div id="logo"></div>
</div>
<div class="block">
<div class="form"></div>
<div class="menu"></div>
</div>
</div>
CSS
html, body {
margin: 0;
padding: 0;
}
#header {
display: table;
width: 100%;
height: 100px;
background: #f39c12;
}
#header>.block {
display: table-cell;
width: 50%;
vertical-align: middle;
}
#logo {
display: block;
width: 50%;
height: 60%;
background: #e74c3c;
}
#header .form {
display: block;
margin-top: 40px;
width: 100%;
height: 30px;
background: #2ecc71;
}
#header .menu {
display: block;
width: 100%;
height: 30px;
background: #3498db;
}