垂直对齐DIV

时间:2010-02-19 04:28:05

标签: css html templates

假设我有2个DIV,一个在彼此之上。

如何将顶部文本与TOP对齐,并将底部文本与底部对齐?

2 个答案:

答案 0 :(得分:2)

True - 垂直对齐仅在您将每个div的display设置为table-cell时才有效

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

答案 1 :(得分:0)