下面是一些基本的用法: 1. 设置背景图像: ```html <div style="background-image: url('image.jpg');"></div> ``` 在这个例子中,`div`元素的背景图像被设置为`image.jpg`。 2. 调整背景图像的大小: ```html <div style="background-image: url('image.jpg'); background-size: cover;"></div...
1-1 background: linear-gradient(red, blue); 默认效果 上为渐变开始点 下为结束渐变点 1-2 background: linear-gradient(to right, red, blue);左边为开始点 去 右边为结束渐变点 to right 翻译: 去右边 1-3 background: linear-gradient(to left, red, blue); 右边为开始点 去 左边为结束渐变点 t...