Michael Horowitz wrote:
I have a horizontal menu in my header div and I would like it to be
aligned at the bottom of my div instead of the top.
Try this
#header {
position: relative;
height: 5em;
background: #CCC;
}
#header ul {
position: absolute;
bottom: 0;
left: 0;
width: 100%;
margin: 0;
padding: 0;
text-align: right;
background: #900;
}
#header ul li {
display: inline;
background: #5D2;
}
Position relative on the header will make it the container for the
absolutely positioned list.
Bruce
*******************************************************************
List Guidelines: http://webstandardsgroup.org/mail/guidelines.cfm
Unsubscribe: http://webstandardsgroup.org/join/unsubscribe.cfm
Help: [EMAIL PROTECTED]
*******************************************************************