css 半透明背景

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
 <head>
  <title> New Document </title>
  <meta http-equiv="Content-Type" content="text/html;charset=UTF-8">
  <style>
        #wrapper{background: #FFB403; width:300px; height:150px;}
        #div1{-moz-opacity: 0.1; /* FF 3.5以下 */opacity: 0.1; /* FF 3.5及以上 */filter: alpha(opacity=10); /* IE6及以上 */background: #fff;width: 200px;height: 50px;}
    </style>
 </head>

 <body>
    <div id="wrapper">
        <div id="div1">
            <span>图层背景半透明,字体颜色也半透明</span>
        </div>
    </div>
 </body>
</html>

 

郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。