Say I have a page:

<body>
<div id="header">
    <h1>some title</h1>
    some header content
</div>
<div id="content">
    Some content
</div>
</body>

and the corresponding css

#header 
{
    height: 150px;
}

The header section is of fixed height but the content of that section may change. I would like to content of the header to be aligned to the bottom of the header section, so the last line of text "sticks" to the bottom of the header section.

So if there is only one line of text it would be like:

----- header section --------
|
|
|
| one line header text
-----------------------------

and if there were say 3:

----- header section --------
|
| first line of header text
| second line of header text
| third, last line of header text
-----------------------------

How can this be done in css?

link|improve this question

1  
You might want to make the text in the "what it would look like" section match the text in the HTML code. It's not 100% clear which text is supposed to go where. – Patrick McElhaney Feb 25 '09 at 13:29
Good point Patrick, I will update it later on. – kristof Feb 25 '09 at 13:44
feedback

7 Answers

up vote 156 down vote accepted

Relative+absolute positioning is your best bet:

<style type="text/css">
  #header { position: relative; }
  #header-content { position: absolute; bottom: 0; left: 0; }
</style>
<div id="header">
  <h1>Title</h1>
  <div id="header-content">Some content</div>
</div>

But you may run into issues with that. When I tried it I had problems with dropdown menus appearing below the content. It's just not pretty.

Honestly, for vertical centering issues and, well, any vertical alignment issues with the items aren't fixed height, it's easier just to use tables.

Example: Can you do this HTML layout without using tables?

link|improve this answer
I actually found that solution before asking here, but somehow forgot to add the position: relative; to the header div and the content kept landing at the bottom of the page. Thanks – kristof Feb 25 '09 at 13:49
feedback

Use CSS positioning.

#header
{ 
    position: relative; 
}

#header-content 
{ 
    position: absolute; 
    bottom: 0; 
}

As cletus noted, you need identify the header-content to make this work.

<span id="header-content">some header content</span>
link|improve this answer
+1. Thanks for the answer, I accepted the one by cletus as it pointed me into the right drection first – kristof Feb 25 '09 at 13:45
feedback

I use this porperties and it work! ^_^

> display:table-cell;
> vertical-align:bottom;
link|improve this answer
14  
table-cell isn't supported in IE. – Ben Aug 16 '10 at 3:45
feedback

I know this is over 2 years old, but I have devised a way which is a lot simpler than whats been mentioned.

Set the height of the header div. Then inside that, style your H1 tag as follows:

float: left;
padding: 90px 10px 11px

I'm working on a site for a client, and the design requires the text to be at the bottom of a certain div. I've achieved the result using these two lines and it works fine. Also, if the text does expand, the padding will still remain the same.

link|improve this answer
feedback

A perfect cross-browser example is probably this one here:

http://www.csszengarden.com/?cssfile=/213/213.css&page=0

The idea is both to display the div at the bottom and also making it stick there. Often the simple approach will make the sticky div scroll up with the main content.

Following is a fully working minimal example. Note that there's no div embedding trickery required. The many BRs are just to force a scrollbar to appear:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html>
<head>
    <style>
        * {
            margin: 0;
            padding: 0;
        }

        #floater {
            background: yellow;
            height: 200px;
            width: 100%;
            position: fixed;
            bottom: 0px;
            z-index: 5;
            border-top: 2px solid gold;
        }

    </style>
</head>


<body>
    <br><br><br><br><br><br><br><br><br><br><br><br>
    <br><br><br><br><br><br><br><br><br><br><br><br>
    <br><br><br><br><br><br><br><br><br><br><br><br>
    <br><br><br><br><br><br><br><br><br><br><br><br>


    <div id="floater"></div>
</body>
</html>

If you are wondering your code might not be working on IE, remember to add the DOCTYPE tag at the top. It's crucial for this to work on IE. Also, this should be the first tag and nothing should appear above it.

link|improve this answer
3  
Since you're declaring your document as XHTML strict, you should also self-close your <br /> tags... – aaamos Nov 14 '11 at 6:17
feedback
<head>
    <title>Test</title>
    <style type="text/css">
    table { width:500px; border-collapse:collapse}
    th, td { border:1px solid black; vertical-align: top;}
    th { width:100px; }
    td { background:#ccc; }
    .wrap { position:relative; height:100%; padding-bottom:1em; background:#aaa; 
            height:200px;}
    .manage { text-align:right; position:absolute; bottom:0; right:0; }
    p{ margin: 0 0 5px 0; }
    </style>
</head>
<body >
<table>
    <tr>
        <th>Mauris tortor nulla, sagittis ut, faucibus eu, imperdiet ut, libero.</th>
        <td>
            <div class="wrap">
                <p><a href="http://www.pronexo.com">www.pronexo.com</a></p>
                <div class="manage">Edit | Delete</div>
           </div>
        </td>
    </tr>

    <tr>
        <th>Cras diam.</th>
        <td>
            <div class="wrap">
                <p>Mauris tortor nulla, sagittis ut, faucibus eu, imperdiet ut,
                libero. Sed elementum. Praesent porta, tellus ut dictum
                ullamcorper, est ante condimentum metus, non molestie lorem
                turpis in sapien. Aenean id enim. Nullam placerat blandit ante
                Aenean ac ligula.</p>
                <div class="manage">Edit | Delete</div>
            </div>
        </td>
    </tr>
</table>
</body>
link|improve this answer
feedback

for use vertical-align in a table you can use a table with one tr that has a td
like black position in the picture .
and use a new table with two tr that each of them has a td .
such as green position in following picture.

<table>
  <tr>
    <td>
       <table>
          <tr>
              <td class="green-top">
                 <div>element 1</div>
              </td>
          </tr>
          <tr>
              <td  class="green-bottom">
                 <div>element 2</div>
              </td>
          </tr>
        </table>
     </td>
   </tr>
 </table>

 CSS :
    .green-top{ vertical-align:top; }
    .green-bottom{ vertical-align:bottom; }

enter image description here

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.