取而代之的是使用 CSS 居中的方法,比如使用 text-align: center;、margin: auto; 等样式规则。以下是一个使用 CSS 居中文本的示例:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Centering with CSS Example</title>
<style>
.centered-text {
text-align: center;
}
</style>
</head>
<body>
<div class="centered-text">
<p>This text is centered using CSS.</p>
</div>
</body>
</html>
在这个例子中,通过为包含文本的 <div> 元素添加 .centered-text 类,并在 CSS 中设置 text-align: center;,实现了文本的水平居中。
使用 CSS 进行样式和布局控制比使用废弃的 HTML 标签更加灵活和符合现代的 Web 开发标准。因此,推荐使用 CSS 来实现居中等样式效果。
转载请注明出处:http://www.zyzy.cn/article/detail/3708/HTML5