写一个只有文字,且所有文字都居于页面中央的H5
时间: 2023-12-16 15:05:46 浏览: 71
H5页面设计
可以使用 flexbox 布局实现所有文字都居于页面中央的 H5,示例代码如下:
```html
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>居中的 H5</title>
<style>
body {
margin: 0;
padding: 0;
}
.container {
display: flex;
align-items: center;
justify-content: center;
height: 100vh;
}
h5 {
text-align: center;
}
</style>
</head>
<body>
<div class="container">
<h5>所有文字都居于页面中央</h5>
</div>
</body>
</html>
```
其中,`.container` 用于设置 flexbox 布局,`.container` 的高度设置为 `100vh`,使其占满整个视口;`h5` 的 `text-align` 属性设置为 `center`,使文字水平居中。
阅读全文