渐变

渐变

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Title</title>

<!-- 径向渐变,圆形渐变-->
  <style>
    body{
      background-color: #FFE53B;
      background-image: -webkit-linear-gradient(147deg, #FFE53B 0%, #FF2525 74%);
      background-image: -moz-linear-gradient(147deg, #FFE53B 0%, #FF2525 74%);
      background-image: -o-linear-gradient(147deg, #FFE53B 0%, #FF2525 74%);
      background-image: linear-gradient(147deg, #FFE53B 0%, #FF2525 74%);
    }
  </style>
</head>
<body>


</body>
</html>

 

posted @ 2022-03-08 23:32  少时凌云志  阅读(53)  评论(0)    收藏  举报