I've been attempting to align my menu div with the bottom of my logo div on the same line within my header section.
<div id="header">
<div id="top-bar">
</div>
<div id="clear"></div>
<div id="logo">
<img id="logoimg" src="images/KTMLogo.png" />
</div>
<div id="menu">
<ul>
<li><a href="#">Home</a></li>
<li><a href="#">Movies</a></li>
<li><a href="#">Theaters</a></li>
</ul>
</div>
</div>
CSS
#header {
background-color:#e1874b;
border-bottom-left-radius:25px;
border-bottom-right-radius:25px;
float:left;
position:relative;
}
#logo {
width:280px;
}
#logo img {
max-height:240px;
max-width:240px;
}
#menu {
font-size:18px;
padding:20px;
background: linear-gradient(to bottom, rgba(255,255,255,0.3) 0%,rgba(255,255,255,0)100%);
width:500px;
margin-left:300px;
}
I am aiming for the menu div to be aligned with the bottom of the logo on the same line.