我只是好奇为什么<center>不推荐使用 HTML 中的标签。
<center>
这<center>是一种通过将容器封装在<center>标签中来快速居中对齐文本和图像块的简单方法,我现在真的找不到任何更简单的方法来做到这一点。
任何人都知道如何将“东西”(不是margin-left:auto; margin- right:auto;和宽度的东西)居中的任何简单方法,替代的东西<center>?而且,为什么它被弃用了?
margin-left:auto; margin- right:auto;
该<center>元素已被弃用,因为它定义了其内容的 呈现 方式——它没有描述其内容。
居中的一种方法是将元素的margin-left和margin-right属性设置为auto,然后将父元素的text- align属性设置为center。这保证了元素将在所有现代浏览器中居中。
margin-left
margin-right
auto
text- align
center