首页 > 代码库 > 背景色为半透明的例子
背景色为半透明的例子
效果图
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"> <title>rgba</title> <meta name="description" content=""> <meta name="keywords" content=""> <link href="" rel="stylesheet"> </head> <style type="text/css"> .content{ height:300px; width: 600px; margin-top:-290px; margin-right: auto; margin-left: auto; background-color: #FFF0F5; z-index: 1;/*z值越大,越在上面*/ } .border{ height: 300px; margin-left: auto; margin-right: auto; width: 620px; margin-top: 60px; background: none repeat scroll 0 0 rgba(255, 255, 255, 0.5);/*关键代码,透明度*/ z-index: 0;/*0为最下面的这一层,显示最下面*/ } body{ background-color: #EDEDED3; } </style> <body>3 <!--透明边框 --> <div class="border"></div> <!-- 主要内容 --> <div class="content"></div> </body> </html>
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。