JSFiddle - React, Tailwind, and code Playground
HTML
<div class="wrapper">
<div class="header">header</div>
<div class="sidebar">sidebar</div>
<div class="content">content</div>
</div>
CSS
.wrapper {
display: flex;
flex-wrap: wrap;
width: 100%;
}
.header {
width: 100%;
height: 48px;
background-color: #000;
}
.sidebar {
width: 15%;
background-color: red;
}
.content {
width: 85%;
background-color: blue;
}