0

我有以下代码:

    <div class="copyright">
    <p>Copyright 2013 - All rights reserved</p></div>

    .copyright {
         margin-left: auto;
         margin-right: auto;
         font-family: 'NeouBold';
         font-size: 13px;}

由于某种原因,margin-left 和 margin-right 不会使段落居中。

像这样: https ://dl.dropbox.com/u/94786808/error.png

4

3 回答 3

2

您需要在使用自动边距居中之前给 div 一个宽度,因为默认情况下块级元素占用 100% 宽度

 .copyright {
 margin-left: auto;
 margin-right: auto;
 font-family: 'NeouBold';
 font-size: 13px;
 width: 300px;
 }
于 2013-03-27T14:12:02.577 回答
0

你可以试试 {margin:0 auto}

于 2013-03-27T14:14:23.993 回答
0

尝试:

.copyright {
    text-align: center;
     font-family: 'NeouBold';
     font-size: 13px;}
于 2013-03-27T14:14:30.513 回答