Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
align="center"在<div>标签中使用是否被认为是不好的做法?
align="center"
<div>
你可以在你的 CSS 中有一个 center 类,它适用于大多数块元素。
对于 CSS 代码:
.center {margin:0 auto;}
在您的 HTML 中:
<div class="center">Content Here</div>
如果您希望文本与 div 一样居中对齐,那么您只需将上面的 CSS 更新为:
.center {margin:0 auto; text-align:center;}