<!DOCTYPE html>
<html>
<head>
<style>
/* 使用 Flexbox 实现居中 */
.center {
display: flex;
justify-content: center;
align-items: center;
height: 100vh; /* 设置高度为视口高度 */
}
</style>
</head>
<body>
<div class="center">
<p>这是居中的内容</p>
</div>
</body>
</html>
display: flex;:将容器设置为 Flexbox 布局。justify-content: center;:水平居中对齐子元素。align-items: center;:垂直居中对齐子元素。height: 100vh;:使容器的高度等于视口高度,确保内容在页面的垂直中心。上一篇:html格式是什么格式
下一篇:个人博客网页设计html代码
Laravel PHP 深圳智简公司。版权所有©2023-2043 LaravelPHP 粤ICP备2021048745号-3
Laravel 中文站