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

css3 渐变

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

标签:

代码:

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Document</title>
<style>
.box{
    width: 200px;
    height: 100px;
    border: 1px solid red;
    margin-bottom: 20px;
    margin-right: 20px;
    float: left;
}
.box1{
    background: -moz-linear-gradient(top,#000,#ccc);
    background: -webkit-linear-gradient(top,#000,#ccc);
}
.box2{
    background: -moz-radial-gradient(#000 5%, #333 25%, #ccc 50%);
    background: -webkit-radial-gradient(#000 5%, #333 25%, #ccc 50%);
}
.box3{
    background: -moz-repeating-radial-gradient(#ace, #ace 5px, #f96 5px, #f96 10px);
    background: -webkit-repeating-radial-gradient(#ace, #ace 5px, #f96 5px, #f96 10px);
}
.box4{    
    background: -moz-repeating-linear-gradient(-45deg, #ace, #ace 5px, #f96 5px, #f96 10px);
    background: -webkit-repeating-linear-gradient(-45deg, #ace, #ace 5px, #f96 5px, #f96 10px);
}
</style>
</head>
<body>
    <div class="box box1"></div>
    <div class="box box2"></div>
    <div class="box box3"></div>
    <div class="box box4"></div>
</body>
</html>

效果图:

技术分享

css3 渐变

标签:

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

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