CSS实现背景透明,文字不透明(各浏览器兼容)

css:

body{ background-image:url(bg.jpg);
background-position:center;
background-attachment:fixed;}
.con{ width:500px; height:400px; margin:0px auto;
opacity: 0.65;-moz-opacity: 0.65;filter:alpha(opacity=65);background:#fff;}
.con p{ position:relative;}
 

 html:

<div class="con">
     <p>CSS实现背景透明,文字不透明(各浏览器兼容)CSS实现背</p>
</div>
 

你可能感兴趣的:(css)