是否有可能將div放在div的中間,這樣當父div調整大小時,它仍然停留在中心位置?到目前爲止,我試過更新保證金:當div調整時自動生成
margin:0 auto;和 margin-left:auto; margin-right:auto;
兩者都可以工作,但是一旦div大小發生變化,它就不會重新定位。謝謝:))))
標記:
<div id='bottomcontent' style="float: left; position: absolute; left: 0; bottom: 0; background-color:#0b0b0b; height:100px; width:796px;">
<div id="bottomleftbutton" style="margin-left: 25px;">stuff here </div>
<div id="bottomcentertext" style="margin-left: auto; margin-right: auto;">so far
<h4>17</h4>
places match your criteria</div>
<div id="bottomrightbutton" style="float: right; margin-right: 25px;">stuff here </div>
</div>
(http://jsfiddle.net/Marcel/5bM3Q/),就需要一些相關的標記。 – Marcel
hmmmm ...它確實工作:http://jsfiddle.net/pufamuf/5bM3Q/3/ – pufAmuf
我編輯我的第一篇文章:'bottomcentertext'是我無法重新定位。 – pufAmuf