我尝试将网页中的对象与objects were not positioned at the centre以下的CSS对齐。我该怎么办?
left:50%;
margin-left:-25%;
答案 0 :(得分:4)
适用于:Internet Explorer - 谷歌浏览器 - Safari - Mozilla
<!-- Div content -->
<div style="margin:0 auto;text-align:center">
<!-- Div align in the middle -->
<div style="margin-left:auto;margin-right:auto;text-align:center">
<p>Hello my text is in the middle :-) </p>
</div>
</div>
答案 1 :(得分:2)
对象父元素(它们的容器)必须设置为position:relative
对象本身应设置为position:absolute,left:50%,margin-left负值,以像素为单位的值的一半。
或者您也可以尝试简单地将父元素设置为text-align:center并自己赋予对象“margin:0 auto;”