如何使用CSS居中标签?(复制)[英]How do I center tag using CSS? [duplicate] 本文翻译自  TallChinaDoll  查看原文  2013-03-10  7569    css

时间:2022-11-24 23:46:58

This question already has an answer here:

这个问题已经有了答案:

Code thus far:

代码到目前为止:

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

I want to center the tag horizontally, but not the task. What code do I need to add to do this?

我想水平居中标记,而不是任务。我需要添加什么代码来实现这一点?

1 个解决方案

#1


4  

Add the following to your css rules

在css规则中添加以下内容

margin: 0 auto;

This will horizontally center block level elements.

这将是水平居中的块级别元素。

#1


4  

Add the following to your css rules

在css规则中添加以下内容

margin: 0 auto;

This will horizontally center block level elements.

这将是水平居中的块级别元素。