Topic: Vertical Align? |
|
---|---|
Author | Thread |
Paranoid (IV) Inmate From: Royal Horsing Ground |
posted 09-26-2006 11:53
So I have a footer in my page which includes three logos and looks like this: code: <div class="footer"> <div class="airinc"><a href="http://www.air-inc.com"> <img src="images/airinc.jpg" alt="Go to AIRINC website" width="100px" height="53px"></img></a> </div> <div class="etf"><a href="http://www.etf-online.com"> <img src="images/etflogo.jpg" alt="Go to the ETF website" width="100px" height="41px"></img></a> </div> <div class="traqs"><a href="http://www.traqs.com"> <img src="images/TraQsConsulting.jpg" alt="Go to TraQs Consulting website" width="100px" height="45px"></img></a> </div> </div>
code: div.footer { position:relative; float: left; top: 0px; left: 0px; width: 700px; padding: 0px; padding-top: 50px; margin:0px; margin-top: 10px; border-top: solid silver 1px; } div.airinc { position: relative; float:left; left: 0px; top: 0px; padding: 0px; margin: 0px; } div.etf { position: relative; float:left; left: 0px; padding: 0px; margin: 0px; margin-left: 20px; vertical-align: bottom; } div.traqs { position: relative; float:left; left: 0px; padding: 0px; margin: 0px; margin-left: 20px; vertical-align: bottom; }
|
Paranoid (IV) Inmate From: Australia |
posted 09-26-2006 11:58
The vertical align property is really only for tables and inline elements! Doesnt work like that on divs, unfortunately |
Paranoid (IV) Inmate From: Royal Horsing Ground |
posted 09-26-2006 12:04
Thanks H][RO. I wish they would say that on the W3Schools website... |
Paranoid (IV) Inmate From: London |
posted 09-26-2006 12:32
Seeing as you've applied position relative on your images, and footer, try setting bottom: 0; instead of top: 0; |
Paranoid (IV) Inmate From: Florida |
posted 09-27-2006 01:43
"End tag: forbidden" - http://w3.org/TR/html401/struct/objects.html#edef-IMG |
Paranoid (IV) Inmate From: Norway |
posted 09-27-2006 08:47
One detail, there is no need for the nested DIVs, you can put the ID in the A tags. |
Paranoid (IV) Inmate From: Royal Horsing Ground |
posted 09-27-2006 10:32
Thanks all for you answers, I will try and test them all, see which one is best. |
Paranoid (IV) Inmate From: Florida |
posted 09-28-2006 02:59
Earth, nature, plants. Oh yeah. |