📅  最后修改于: 2023-12-03 15:27:39.868000             🧑  作者: Mango
在HTML代码中,如何将文本居中对齐?
在HTML中,可以使用<center>
标签将文本居中对齐。例如:
<center>This text will be centered.</center>
但是,<center>
标签已被弃用,建议使用CSS来实现文本居中对齐。可以通过设置父元素的text-align
属性来实现。例如:
<div style="text-align: center;">
This text will be centered.
</div>
或者,也可以使用CSS样式来实现:
<style>
.my-class {
text-align: center;
}
</style>
<div class="my-class">
This text will be centered.
</div>
<center>
标签已被弃用,建议使用CSS实现文本居中对齐。margin: 0 auto;
来实现水平居中。