| 1234567891011121314151617181920212223242526272829 |
- <!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-color: blue; */
- /* background-image 背景图片 */
- /* linear-gradient 线性渐变 颜色可以是多个的 */
- /* background-image: linear-gradient(blue,red,yellow,green); */
- /* 可以控制渐变色方向 linear-gradient 第一个属性值 */
- /* to top 从下到上 to bottom 从上到下 to right 从左到右 to left 从右到左 */
- /* to right bottom 从左上到右下 */
- /* background-image: linear-gradient(to right bottom,blue,red); */
- /* 可以控制渐变色角度 linear-gradient 第一个值 */
- background-image: linear-gradient(15deg,blue,red);
- }
- </style>
- </head>
- <body>
- <div class="box"></div>
- </body>
- </html>
|