开发者

Vertical align DIVs

Suppose I have 2 DIVs , one on top of each other.

How do I align the text of the top one to the TOP , a开发者_StackOverflow社区nd align the text of the bottom one to Bottom?


True -- vertical-align only works if you set the display of each div to table-cell

div#top, div#bottom { display: table-cell }
div#top { vertical-align: top }
div#bottom { vertical-align: bottom }


This is how you can do it.

Demos:

http://www.emblematiq.com/blog/vertical_align_with_css/assets/02.html

http://www.emblematiq.com/blog/vertical_align_with_css/assets/03.html

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜