Answers
-
padding
是不可以让内容居中的; -
margin: 0 auto; width: 1000px;
可以让div居中,必要条件就是 必须要规定盒子的宽度; -
你也可以把要居中的div 设置成
display: inline-block;
,然后在父div加上text-align: center;
也会让div居中;
示例:
html
<style> .wrapper { text-align: center; } .wrapper >.center-div { display: inline-block; } </style> <div class="wrapper"> <div class="center-div"> 我是居中的 </div> </div>
TSUMI-
answered 9 years, 5 months ago
具体原因不知道怎么说明,不过在w3.org上有一个说明: http://www.w3.org/TR/CSS21/visudet.html#blockwidth
If both 'margin-left' and 'margin-right' are 'auto', their used values are equal. This horizontally centers the element with respect to the edges of the containing block.
然后在 http://www.w3help.org/ 有一篇类似相关的文章,不知道是否能帮你 http://www.w3help.org/zh-cn/causes/RD8028
囧Smith
answered 9 years, 5 months ago