I have a little div (24 px tall), and I'm trying to force text to the bottom of it. Right now, the text is staying at the top, right aligned, like it supposed to.
http://mnjordan.com/kmo/
It's the bar that says "moore blog!" with the text links to the right. I'm trying to get those links to the bottom of the menubar div.
Here's the code for the menubar:
Help?
http://mnjordan.com/kmo/
It's the bar that says "moore blog!" with the text links to the right. I'm trying to get those links to the bottom of the menubar div.
Here's the code for the menubar:
Code:
#menubar {
text-align:right;
border:1px solid #CCCCCC;
width: 700px;
margin-left: auto;
margin-right: auto;
background: url(images/menubar.gif);
height:24px;
}
a.menuitem {
color:#f8f8f8;
text-decoration:none;
padding-left:10px;
padding-right:10px;
background-color:inherit;
}
a.menuitem:hover {
color:#f69100;
text-decoration:none;
padding-left:10px;
padding-right:10px;
background-color:inherit;
}
Help?