不透明只有不透明

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

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

  • 使用rgba

    .dropdown .dropdown-menu {
        background-color: rgba(255, 255, 255, 0.8);
    }
    

    从文档:

    RGBA()

    可以使用rgba()函数表示法在红 - 绿 - 蓝 - alpha模型(RGBa)中定义颜色。 RGBa扩展RGB颜色模型以包含Alpha通道,从而允许指定颜色的不透明度。 一种意味着不透明度:0 =透明; 1 =不透明;

    rgba(255,0,0,0.1)/ * 10%不透明红色* /

    rgba(255,0,0,0.4)/ * 40%不透明红色* /

    rgba(255,0,0,0.7)/ * 70%不透明红色* /

    rgba(255,0,0,1)/ *完全不透明红色* /


    在你的CSS上进行以下更改

    .dropdown .dropdown-menu {
        background-color: rgba(255,255,255,0.5);
    }
    
    链接地址: http://www.djcxy.com/p/28087.html

    上一篇: Opacity only on ul not on li css

    下一篇: How to set a background opacity without affecting the text