为了能到远方,脚下的每一步都不能少.|

css小技巧

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

效果:
image

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

效果:
image

本文作者:Morita-desin

本文链接:https://www.cnblogs.com/yqquinn/p/17486491.html

版权声明:本作品采用知识共享署名-非商业性使用-禁止演绎 2.5 中国大陆许可协议进行许可。

posted @   Morita-desin  阅读(14)  评论(0编辑  收藏  举报
点击右上角即可分享
微信分享提示
评论
收藏
关注
推荐
深色
回顶
收起