4

到目前为止的代码:

#master {
position: absolute;
height: auto;
width: 1000px;
min-height: 50px;
}

我想将标签水平居中,但不是任务。我需要添加什么代码才能做到这一点?

4

1 回答 1

4

将以下内容添加到您的 CSS 规则中

margin: 0 auto;

这将使块级元素水平居中。

于 2013-03-10T02:50:30.920 回答