html标题居中
时间: 2023-06-21 15:18:30 浏览: 180
html居中问题
可以使用CSS样式将HTML标题居中。具体方法如下:
1. 使用`text-align`属性将标题文字水平居中。
```css
h1 {
text-align: center;
}
```
2. 使用`line-height`属性将标题垂直居中。
```css
h1 {
text-align: center;
line-height: 100px; /* 根据标题高度自行调整 */
}
```
3. 使用Flex布局将标题水平和垂直居中。
```css
body {
display: flex;
justify-content: center; /* 水平居中 */
align-items: center; /* 垂直居中 */
}
```
阅读全文