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

这个问题在这里已经有了答案:

  • 如何使用CSS为文本或图像提供透明背景? 26个答案

  • 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

    上一篇: How to change the background colour's opacity in CSS

    下一篇: Overlapping CSS elements with different opacity