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 Quote 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? Quote 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 Quote 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
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.