- 文字水平垂直居中
文字行高 = 盒子高
<body>
<div>文字垂直居中</div>
</body>
div {
height: 40px;
width: 250px;
font-size: 16px;
background-color: aqua;
line-height: 40px;
text-align: center;
}
效果:
<body>
<div>文字垂直居中</div>
</body>
div {
height: 40px;
width: 250px;
font-size: 16px;
background-color: aqua;
line-height: 40px;
text-align: center;
}
效果: