CSS 背景颜色渐变属性

渐变色

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>渐变色</title>
</head>
<body>
    <div class="box">
        <div class="main"></div>
    </div>
    <style>
         .box{
              background: -webkit-linear-gradient(top, #f7b462, white); /* Safari 5.1 - 6.0 */
              background: -o-linear-gradient(top, #f7b462, white); /* Opera 11.1 - 12.0 */
              background: -moz-linear-gradient(top, #f7b462, white); /* Firefox 3.6 - 15 */
              background: linear-gradient(top, #f7b462 , white); /* 标准的语法(必须放在最后) */
         }
    </style>
</body>
</html>

 

posted @ 2021-08-20 18:05  L小洁  阅读(138)  评论(0)    收藏  举报