{site_name}

{site_name}

🌜 搜索

HTML标签<center>是一种已经被弃用的标签,它用于将其内容在页面中居中显示

前端 𝄐 0
HTMLcenter怎么用,HTMLcenter标签
HTML标签<center>是一种已经被弃用的标签,它用于将其内容在页面中居中显示。现在应该使用CSS来实现此功能。

以下是使用<center>标签将文本居中的示例:

html
<center>
<h1>Welcome to my website</h1>
<p>This is some text that will be centered.</p>
</center>


但是,在现代Web开发中,应该使用CSS替代<center>标签:

html
<div style="text-align:center;">
<h1>Welcome to my website</h1>
<p>This is some text that will be centered.</p>
</div>


或者,可以将样式放入CSS文件中并将其应用于HTML元素:

html
<style>
.center {
text-align: center;
}
</style>

<div class="center">
<h1>Welcome to my website</h1>
<p>This is some text that will be centered.</p>
</div>