gpt4 book ai didi

css - 什么是 HTML 中心标签的 DIV 样式?

转载 作者:太空狗 更新时间:2023-10-29 13:46:41 26 4
gpt4 key购买 nike

什么是HTML中心标签的DIV样式?

最佳答案

HTML:

<div id="something">
Content goes here.
</div>

还有 CSS:

#something
{
width: 850px;
margin-left: auto;
margin-right: auto;
}

关于css - 什么是 HTML 中心标签的 DIV 样式?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12035430/

26 4 0