用HTML写一个水平垂直居中的案例
时间: 2024-05-11 20:20:23 浏览: 90
以下是一个使用 HTML 和 CSS 实现水平垂直居中的案例:
```html
<!DOCTYPE html>
<html>
<head>
<title>水平垂直居中</title>
<style>
body {
height: 100vh;
display: flex;
align-items: center;
justify-content: center;
}
.box {
width: 200px;
height: 200px;
background-color: #eee;
display: flex;
align-items: center;
justify-content: center;
}
</style>
</head>
<body>
<div class="box">
<p>水平垂直居中</p>
</div>
</body>
</html>
```
使用 `display: flex` 和 `align-items: center; justify-content: center;` 将页面水平垂直居中。将要居中的元素使用 `display: flex` 和 `align-items: center; justify-content: center;` 实现水平垂直居中。
阅读全文