1234567891011121314151617181920 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <title>Document</title>
- <style>
- .box{
- width: 200px;
- height: 200px;
- /* background-image: linear-gradient(to right bottom,red,blue); */
- background-image: linear-gradient(30deg,red,blue);
- }
- </style>
- </head>
- <body>
- <a href="https://www.runoob.com/css3/css3-gradients.html">文档</a>
- <div class="box"></div>
- </body>
- </html>
|