I attempt to outline my issue using visuals.
*This is what I desire
*However, this is what I am currently receiving:
HTML
<div class="header">
<ul class="menu">
<li>Home</li>
<li>Content</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 have attempted multiple times without success, seeking assistance.
Any suggestions on how to resolve this issue?