美好的一天。絕對中心流體格
我知道,如果你想絕對中心一個div,你這樣做:
<div id="parent">
<div id="child">blahblah</div>
</div>
CSS:
#parent{
width: 500px;
height: 500px;
position: absolute; /*(or relative)*/
top: 50%;
left: 50%;
margin-top: -250px;
margin-left: -250px;
text-align: center;
}
如果什麼父DIV是流體DIV?你怎麼絕對中心它意味着:
#parent{
max-width: 500px;
max-height: 500px;
top: 50%; ->is this right?
left: 50%; -> is this right?
margin-top: ???;
margin-left: ???;
text-align: center;
}
是您#parent實際上元素的定位的孩子到>? – 2013-03-08 11:38:51
#parent div是孩子的身體,或任何div是它的父母...取決於位置相對或absoulte – 2013-03-08 11:50:52
http://jsfiddle.net/Z5SSD/像這樣? – Passerby 2013-03-08 11:52:36