如何在CSS中更改背景颜色的不透明度
这个问题在这里已经有了答案:
background: rgba(0,0,0,.5);
你可以使用rgba进行不透明,只能在ie9 +和更好的浏览器上运行
像这样使用RGBA: background-color: rgba(255, 0, 0, .5)
由于大多数常用浏览器支持它,因此使用rgba ..
.social img:hover {
background-color: rgba(0, 0, 0, .5)
}
链接地址: http://www.djcxy.com/p/28073.html