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

- 背景色半透明
<div></div>
div {
width: 200px;
height: 100px;
background-color: rgb(0, 0, 0, 0.5);
}
效果:


浙公网安备 33010602011771号