8_渐变色.html 545 B

1234567891011121314151617181920
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6. <title>Document</title>
  7. <style>
  8. .box{
  9. width: 200px;
  10. height: 200px;
  11. /* background-image: linear-gradient(to right bottom,red,blue); */
  12. background-image: linear-gradient(30deg,red,blue);
  13. }
  14. </style>
  15. </head>
  16. <body>
  17. <a href="https://www.runoob.com/css3/css3-gradients.html">文档</a>
  18. <div class="box"></div>
  19. </body>
  20. </html>