CSS 背景透明

來源:互聯網
上載者:User

一、首先說下CSS實現背景全透明

全透明比較好實現。在要實現透明功能的id或Class裡,輸入

{background:transparent;}

在IE、Firefox等瀏覽器下都有效果。

二、再來說下CSS實現背景半透明

可以實現自訂的透明程度,代碼如下:

{filter:alpha(opacity=80);            /* 用於IE瀏覽器-透明度為20%*/-moz-opacity:0.8;                    /*  用於Moz + Firefox-透明度為20%*/opacity: 0.8;                        /* 用於支援CSS3的瀏覽器-透明度為20%*/}
相關文章

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.