码迷,mamicode.com
首页 > Web开发 > 详细

日常css技巧小结(1)--背景透明度改变对内容无影响

时间:2016-06-01 01:22:28      阅读:183      评论:0      收藏:0      [点我收藏+]

标签:

刚开始出现的错误,内容会受到背景透明度改变的影响:如图:

技术分享

代码:

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Document</title>
    <style>
        div{
            width:300px;
            height: 300px;
            margin: 50px auto;
            line-height: 300px;
            text-align: center;
            background: red;
            color: #000;
            font-size: 30px;
            -webkit-opacity: 0.2;
        }
    </style>
</head>
<body>
    <div class=“wrap”>
        我爱夏天
    </div>
</body>
</html>

解决方法一:

    在div.wrap内再加一个div。作为蒙版,对其设置透明度的变化样式,并且让内容相对于wrap绝对定位,要记得给wrap设置相对定位!!

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Document</title>
    <style>
        .wrap{
            width:300px;
            height: 300px;
            margin: 50px auto;    
            position: relative;
        }
        .con{
            width: 300px;
            height: 300px;
            background: red;
            -webkit-opacity: 0.2;
        }
        span{
            position: absolute;
            top: 150px;
            left: 100px;    
            font-size: 30px;
            color: #000;
        }
    </style>
</head>
<body>
    <div class="wrap">
        <div class="con"></div>
        <span>我爱夏天</span>
    </div>
</body>
</html>

最后效果:

技术分享

解决方法二:

用rgba()设置background的背景色和透明度样式。

    <style>
        div{
            width:300px;
            height: 300px;
            margin: 50px auto;
            line-height: 300px;
            text-align: center;
            background: rgba(250,18,18,0.2);
            color: #000;
            font-size: 30px;
         
        }
    </style>

最后效果:

技术分享

可以明显看出使用CSS3的rgba()要方便很多,节省大量代码,文档结构也更加清晰,不过rgba()的兼容性问题也让让人头疼:

技术分享

最后给出一个兼容性的解决方法:

.rgba {
  background: rgb(0,0,0); /*The Fallback color,这里也可以使用一张图片来代替*/
  background: rgba(0, 0, 0,0.5);
  -ms-filter: "progid:DXImageTransform.Microsoft.gradient(GradientType=1,startColorstr=#80000000,endColorstr=#80000000)"; /*Filter for IE8 */    
  filter: progid:DXImageTransform.Microsoft.gradient(GradientType=1,startColorstr=#80000000, endColorstr=#80000000); /*Filter for older IEs */
 }

 

日常css技巧小结(1)--背景透明度改变对内容无影响

标签:

原文地址:http://www.cnblogs.com/qjqcs/p/5547420.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!