JSFiddle - React, Tailwind, and code Playground
by Hamid Talebi
HTML
<div class="header">
<ul>
<li><a href="#">Home</a></li>
<li><a href="#">Contact</a></li>
</ul>
</div>
<div class="container">
....
</div>
CSS
.header {
background: #32aaff;
width : 400px;
height: 75px;
line-height: 75px;
}
ul {
width:300px;
height:40px;
list-style-type: none;
background: #955d5d;
margin-top:50px;
position:absolute;
margin-left:30px;
}
ul li {
width:80px;
height:30px;
margin:10px;
float:left;
background: #d2d2d2;
}
ul li a {
float: left;
width: 35px;
height: 35px;
line-height: 35px;
margin-left: 12px;
text-align: center;
display: inline-block;
}
.container{
width:400px;
height:500px;
background:#323232;
}