比如:下面這段代碼,如何讓裡面的div在垂直方向上面居中呢(不好意思,實在是沒有懸賞幣了)
.out{ width:500px; height:500px; background:blue; } .inn{ width:200px; height:200px; background:red; }你的inn怎麼比out還大。。搞反了吧。。通過margin來定位。absolute定位最好,不需要考慮父容器,只需要依據自身的寬和高度來調整margin
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<style>.out{ width:300px; height:300px; background:blue; position:relative} .inn{ width:200px; height:200px;background:red;position:absolute;margin-left:-100px;margin-top:-100px;left:50%;top:50% } </style>
<div class="out"><div class="inn"></div></div>