Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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?

share|improve this question
2  
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
1  
I tried to edit the question, from Patrick's suggestion to make the HTML match the desired output. (It took me a few reads to correlate the two, especially how the content section in the html is not in the output sections at all.) I put some time into it, adding html for the two output examples, but it was rejected as "This edit is incorrect or an attempt to reply to or comment on the existing post". I can provide it some other way if desired. – goodeye Dec 7 '12 at 4:32

10 Answers

up vote 313 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?

share|improve this answer
2  
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
5  
You can manage your dropdown position with the z-index property to bring it to front. Remember that the z-index property works with elements positioned relatively or absolutely. Also, is not correct semantically speaking to use a table to achieve layout results. – GarciaWebDev Jul 25 '12 at 19:16

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>
share|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

I use these properties and it works!

#header
{
   display: table-cell;
   vertical-align: bottom;
}
share|improve this answer
25  
table-cell isn't supported in IE. – Ben Aug 16 '10 at 3:45
11  
Isn't supported in IE8 and earlier. It IS supported in IE9. – cale_b Jun 5 '12 at 22:47
5  
Most users that use IE are internet users that are not much familiar with how internet works thus never upgrading their browser. So consider this if you would choose this option :) – Henrik Petterson Aug 10 '12 at 13:52
2  
Doesn't look to work in Chrome :/ – fguillen Sep 21 '12 at 14:46
2  
@cale_b According to caniuse.com it DOES work in IE8. – Zach L Feb 28 at 19:08

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.

share|improve this answer

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.

share|improve this answer
23  
Since you're declaring your document as XHTML strict, you should also self-close your <br /> tags... – aaamos Nov 14 '11 at 6:17
3  
I think the above comment is rather silly. This was really helpful answer for me! – Karl Kildén Oct 12 '12 at 19:42
4  
@KarlKildén if you were referring to the comment from aaamos, it most definitely isn't a silly comment - serving the above document with its correct content-type header would result in the browser throwing an xml parsing error. – Razor Dec 14 '12 at 13:16
<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>
share|improve this answer

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

share|improve this answer
4  
...and we're back to tables. – a coder Jan 22 at 16:27
@a coder: The fact is, until CSS Grid Layout is released, this is the most simple, browser-compatible, and easy to understand solution. Moreover, it does not require harcoding dimensions. With current CSS you need to be a CSS guru or spend hours to hack your way out of dirty tricks to do such a simple thing. Time is money. – Mister Smith May 2 at 10:48

Inline or inline-block elements can be aligned to the bottom of block level elements if the line-height of the parent/block element is greater than that of the inline element.*

markup:

<h1 class="alignBtm"><span>I'm at the bottom</span></h1>

css:

h1.alignBtm { line-height:3em; }
h1.alignBtm span { line-height:1.2em; vertical-align:bottom;}

*make sure you're in standards mode

share|improve this answer

Seems to be working:

#content {
    /* or just insert a number with "px" if you're fighting CSS without lesscss.org :) */
    vertical-align: -@header_height + @content_height;

    /* only need it if your content is <div>,
     * if it is inline (e.g., <a>) will work without it */
    display: inline-block;
}

Using less makes solving CSS puzzles much more like coding than like... I just love CSS. It's a real pleasure when you can change the whole layout (without breaking it :) just by changing one parameter.

share|improve this answer

try with:

div.myclass { margin-top: 100%; }

try changing the % to fix it. Example: 120% or 90% ...etc.

share|improve this answer
I didn't vote down, but this won't work, as it's relevant to the div, not relevant to the text inside the div. – Daedalus Jan 21 at 5:05
Works perfectly fine with 1 set of content, but will need to be adjusted if the content changes. If it's dynamic content, then dont use this! – Mike Graf Feb 8 at 16:42

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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