我有一個div
,高度en寬度爲33.33%。我想要div
中的文字。在百分比高度的div中居中文本
HTML
<div class="blogs" id="content">
<div id="blog1">tests</div>
<div id="blog2"></div>
<div id="blog3"></div>
</div>
CSS
#blog1 {
width: 33.33%;
padding-bottom: 33.33%;
background: red;
float: left;
}
我怎樣才能使這個?
你的意思是垂直排列或水平排列的?我假設你是指垂直,因爲你指定的高度? – Blunderfest
http://www.onenaught.com/posts/201/use-css-displaytable-for-layout – Sturm
http://css-tricks.com/vertically-center-multi-lined-text/ – Thaddius