CSS Create a transparent div

后端 未结 4 1069
-上瘾入骨i
-上瘾入骨i 2021-01-01 02:23

Is there a way to make a div HTML element half transparent?

4条回答
  •  清酒与你
    2021-01-01 03:21

    With CSS, this is cross browser solution

    div {
        opacity: 0.5;
        filter: alpha(opacity = 0.5);
        filter: progid:DXImageTransform.Microsoft.Alpha(opacity=0.5);
    }
    

提交回复
热议问题