Jump to content

[SOLVED] aligning an image to the bottom of a div


M.O.S. Studios

Recommended Posts

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
Share on other sites

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
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.