I've got a question about vertical alignment I want to place an image at the bottom of my content area the code would look as follows...
HTML Code:
<html>
<body>
<div id="wrapper">
<div id="menu">
my menu here
</div>
<div id="content">
this is the information I want on the top
<div id="bottomimage">
<img scr="./pic.jpg">
</div>
</div>
</div>
</body>
</html>
the css looks like this...
.bottomimage {
vertical-align: bottom;
}
.content {
float: right;
clear: both;
min-height: 500px;
}
i'm having no luck here anyone know how to position things vertically like that without having to add a huge padding or margin to that inner div or is that the only way?
Last edited by blackhawkpowers; 12-22-2006 at 12:35 PM..
|