怎么让文字上下居中
时间: 2023-08-06 17:06:49 浏览: 95
html文本上下左右居中
要让文字上下居中,可以通过设置行高来实现。具体做法是将行高设置为和文字所在容器的高度相等,这样文字就会垂直居中。CSS代码如下:
```
.container {
height: 100px; /* 容器高度 */
line-height: 100px; /* 行高等于容器高度 */
text-align: center; /* 文字水平居中 */
}
```
阅读全文