我有以下代码:
<div class="copyright">
<p>Copyright 2013 - All rights reserved</p></div>
.copyright {
margin-left: auto;
margin-right: auto;
font-family: 'NeouBold';
font-size: 13px;}
出于某种原因,左边距和右边距不会使段落居中。
像这样:
https://dl.dropbox.com/u/94786808/error.png
最佳答案
尝试:
.copyright {
text-align: center;
font-family: 'NeouBold';
font-size: 13px;}
关于css - CSS无法正确对齐段落,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/15660998/