渐变背景
background: linear-gradient(to bottom, #1e5799, #8373c9) fixed;
从上到下的线性渐变背景,使用 fixed 属性使背景固定不随内容滚动。
多重背景
background:
url("top-image.png") top left no-repeat,
url("bottom-image.png") bottom right no-repeat,
linear-gradient(to bottom, rgba(30,87,153,0.5), rgba(32,124,202,0.5));
可以同时应用多个背景层,第一个背景在最上层,依此类推。