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

css3颜色渐变

时间:2017-12-22 00:43:24      阅读:181      评论:0      收藏:0      [点我收藏+]

标签:near   blog   ice   die   css3   ble   post   es2017   rom   

css代码如下:

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <meta http-equiv="X-UA-Compatible" content="ie=edge">
    <title>Document</title>
    <style>
        #div1 {
            width: 200px;
            height: 200px;
            border: 1px solid #333;
             background: -webkit-linear-gradient(top,red,yellow); /* chrome */
             background: -ms-linear-gradient(top,red,yellow); /* IE10及以上 */
             background: -moz-linear-gradient(top,red,yellow); /* 火狐 */
             background: linear-gradient(top,red,yellow); /* 兼容 */
        }
    </style>
</head>
<body>
    <div id="div1"></div>
</body>
</html>

  效果如下:

技术分享图片

 

css3颜色渐变

标签:near   blog   ice   die   css3   ble   post   es2017   rom   

原文地址:http://www.cnblogs.com/Med1tator/p/8082921.html

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