| 123456789101112131415161718192021222324 |
- <!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: 300px;
- height: 300px;
- border: 2px solid #000;
- margin: 150px auto;
- background-image: radial-gradient(circle at 30% 70%,red,yellow,blue)
- /* background-image: radial-gradient(circle at top left,red,yellow,blue) */
- /* background-image: radial-gradient(circle,red,yellow,blue) */
- /* background-image: linear-gradient(60deg,red,blue,yellow); */
- /* background-image: linear-gradient(to top right,red,blue); */
- }
- </style>
- </head>
- <body>
- <div id="box"></div>
- </body>
- </html>
|