CSS两种透明表述
Posted jrri
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了CSS两种透明表述相关的知识,希望对你有一定的参考价值。
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>两种透明度表述</title> <style type="text/css"> body background: url(web/images/background.jpg); .box1 /* 此方法透明整个元素模块 ,不管是背景还是字体, 都会变得透明. 内容会变得难以辨认*/ width: 300px; height: 200px; font-size: 20px; line-height: 200px; color: white; text-align: center; background: black; /* 透明度需要兼容ie浏览器语句.*/ opacity: 0.3; filter: alpha(opacity=30) .box2 width: 300px; height: 200px; font-size: 20px; line-height: 200px; color: white; margin-top: 50px; text-align: center; /*rgba透明语句中,a的属性是不透明属性,用小数表示,1最大,0最小*/ background: rgba(0,0,0,0.3); /*只透明背景, 文字清晰依旧*/ </style> </head> <body> <div class="box1">这是第1个元素块</div> <div class="box2">这是第2个元素块</div> </body> </html>
以上是关于CSS两种透明表述的主要内容,如果未能解决你的问题,请参考以下文章