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

when appending divs to a div with a fixed height, the child divs will appear from top to bottom, sticking at the top border.

┌─────────────────────────┐
│ Child Div 1             │
│ Child Div 2             │
│                         │
│                         │
│                         │
└─────────────────────────┘

I'm now trying to display them from bottom to top like this (sticking to the bottom border):

┌─────────────────────────┐
│                         │
│                         │
│                         │
│ Child Div 1             │
│ Child Div 2             │
└─────────────────────────┘
┌─────────────────────────┐
│                         │
│                         │
│ Child Div 1             │
│ Child Div 2             │
│ Child Div 3             │
└─────────────────────────┘
┌───────────────────────┬─┐
│ Child Div 2           │▲│
│ Child Div 3           │ │
│ Child Div 4           │ │
│ Child Div 5           │█│
│ Child Div 6           │▼│
└───────────────────────┴─┘

And so on... I hope you get what I mean.

Is this simply doable with css (something like vertical-align: bottom?) or do I have to hack something together with javascript?

Thank you very much for your help. :)

share|improve this question
37  
Impressive ASCII art, especially the last one with the scrollbar! – Niklas Jun 19 '11 at 10:37
4  
+1 for the ASCII art – venimus Jun 19 '11 at 10:43
2  
@David Wick - Can you show where is the duplicate, because I don't see any question that needs to work with overflowing content too? – galambalazs Jun 19 '11 at 12:03

3 Answers

up vote 10 down vote accepted

All the answers miss the scrollbar point of your question. And it's a tough one. If you only need this to work for modern browsers and IE 8+ you can use table positioning, vertical-align:bottom and max-height. See MDN for specific browser compatibility.

Demo (vertical-align)

.wrapper { display:table-cell; vertical-align:bottom; height:200px;  }
.content { max-height:200px; overflow:auto;  }

html

<div class="wrapper">
  <div class="content">
     <div>row 1</div>
     <div>row 2</div>
     <div>row 3</div>  
  </div>
</div>  

Other than that, I think it's not possible with CSS only. You can make elements stick to the bottom of their container with position:absolute, but it'll take them out of the flow. As a result they won't stretch and make the container to be scrollable.

Demo (position-absolute)

.wrapper { position:relative; height:200px; }
.content { position:absolute; bottom:0; width:100%; }
share|improve this answer
and overflow-y:auto for the container – venimus Jun 19 '11 at 10:46
@venimus - It would display a disabled scrollbar, because the container's height is not affected by a position:absolute child. – galambalazs Jun 19 '11 at 11:18
well your solution does not display any scrollbars, which is part of the question – venimus Jun 19 '11 at 11:22
I've updated the answer. You can work around the scrollbar issue in modern browsers (IE 7+). – galambalazs Jun 19 '11 at 11:54
1  
Thanks for your answer, the wrapper does the job well. – Wulf Jun 19 '11 at 12:08

This is simple when you use position: absolute.

http://jsfiddle.net/XHeZj/

share|improve this answer
<div style="height: 500px;">
    <div style="height: 20px; position: absolute; bottom: 120px;">Child Div 1</div>
    <div style="height: 20px; position: absolute; bottom: 100px;">Child Div 2</div>
    <div style="height: 20px; position: absolute; bottom: 80px;">Child Div 3</div>
    <div style="height: 20px; position: absolute; bottom: 60px;">Child Div 4</div>
    <div style="height: 20px; position: absolute; bottom: 40px;">Child Div 5</div>
</div>
share|improve this answer

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.