How to change the background colour's opacity in CSS

This question already has an answer here:

  • How do I give text or an image a transparent background using CSS? 26 answers

  • 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/28074.html

    上一篇: 如何覆盖孩子的不透明度

    下一篇: 如何在CSS中更改背景颜色的不透明度