开发者

Vertical align DIVs

开发者 https://www.devze.com 2022-12-20 11:42 出处:网络
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 onl

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

精彩评论

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