CSS笔记14:透明度(opacity)

2022-07-01  本文已影响0人  _百草_

1. opacity


  1. 子元素拥有相同的透明度


rgba

    <style>
    /*
    只要是颜色,都可以使用透明度
    rgba(红色, 绿色, 蓝色, 透明度)
    a:代表透明度,取值0-1,0表示完全透明,1表示不透明;
     */
    div div{
        height:100px;
        width:200px;
        /*margin:10px auto;*/
        border:1px solid rgba(255,100,100,0.5);
    }
    .box div:first-child{
        background-color: rgba(255,100,100,0.5);
        position:fixed;/*覆盖标准文档流*/

    }
    </style>
颜色透明度效果
注:适用于文本颜色透明、背景颜色透明度、边框颜色透明度等颜色

参考

  1. http://c.biancheng.net/css3/opacity.html
上一篇下一篇

猜你喜欢

热点阅读