M.O.S. Studios Posted May 20, 2009 Share Posted May 20, 2009 i have a div that has a bgimage, i have another placed in that <div> and i want to align it along the bottom. how ever no matter what i try the image stays along the top css .logo{ width:100%; height:255px; background:transparent url(../../images/background/citywhite.png); background-repeat: repeat-x; } html <div class='logo' align='center'><img src='images/background/logo.gif'></div> any ideas???? thanks in advance Link to comment https://forums.phpfreaks.com/topic/158982-solved-aligning-an-image-to-the-bottom-of-a-div/ Share on other sites More sharing options...
Axeia Posted May 20, 2009 Share Posted May 20, 2009 add "position: relative;" to the .logo class and style="position: absolute; bottom: 0;" on the image. (and an ALT tag.. it's required!) But going by the path of the image I'd say you'd be better of using a second div inside .logo and setting the background to image/background/logo.gif with some background-position: bottom; CSS magic? Link to comment https://forums.phpfreaks.com/topic/158982-solved-aligning-an-image-to-the-bottom-of-a-div/#findComment-838490 Share on other sites More sharing options...
M.O.S. Studios Posted May 20, 2009 Author Share Posted May 20, 2009 awesome worked like a charm Link to comment https://forums.phpfreaks.com/topic/158982-solved-aligning-an-image-to-the-bottom-of-a-div/#findComment-838505 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.