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

css3 RGBA

时间:2015-04-23 15:09:20      阅读:168      评论:0      收藏:0      [点我收藏+]

标签:

代码:

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Document</title>
<style>
.box{}
.box span{
    display: block;
    float: left;
    width: 80px;
    height: 80px;
    line-height: 80px;
    text-align: center;
}
.box span:nth-child(1){background-color: rgba(253,253,1,1);}
.box span:nth-child(2){background-color: rgba(253,253,1,.8);}
.box span:nth-child(3){background-color: rgba(253,253,1,.6);}
.box span:nth-child(4){background-color: rgba(253,253,1,.4);}
.box span:nth-child(5){background-color: rgba(253,253,1,.2);}
</style>
</head>
<body>
    <div class="box">
        <span>100%</span>
        <span>80%</span>
        <span>60%</span>
        <span>40%</span>
        <span>20%</span>
    </div>
</body>
</html>

效果图:

技术分享

css3 RGBA

标签:

原文地址:http://www.cnblogs.com/baixc/p/4450489.html

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