Can anyone help me figure out how to vertically align a div? I've been struggling with it and can't seem to get it right. What am I missing?
body {
border: 1px solid red;
height: 500px;
}
#contactUs {
border: 1px solid blue;
vertical-align: bottom;
}
<div id = "contactUs"> Contact Us </div>
Note: Please avoid suggesting solutions involving absolute positioning.