I try to describe my problem using images.
*Here is what I like to have
*This is what I'm getting:
HTML
<div class="header">
<ul class="menu">
<li>Home</li>
<li>Contant</li>
</ul>
</div>
<div class="container>
....
</div>
CSS
.header {
background: #77bbf5;
width : 100px;
height: 75px;
line-height: 75px;
}
.menu {
float: left;
list-style-type: none;
background: #955d5d;
position: absolute
}
.menu li {
display: inline;
position: relative;
}
.menu li a {
float: left;
width: 35px;
height: 35px;
line-height: 35px;
margin-left: 12px;
margin-top: 50px;
text-align: center;
display: inline-block;
}
i tried, tried and tried, please help.
How to fix that ?
****edited****
– user3281766 Feb 10 '14 at 09:50