站长在这里跟大家分析一下margin:0 auto不能水平居中的原因:
实例:
<code class="language-html"> <title>css 解决div设置margin:0 auto不能水平居中的方法</title> <div style="margin:0 auto;">码农教程</div> <!--如果不设置宽度,div无法居中。--> <div style="margin:0 auto;width:300px;">码农教程</div> <!--这样设置即可居中--> </code>
在线测试