背景颜色
background-color:aqua;
背景图片
background-image:url("https://xn--xu0a.cn/api/sj");
如何平铺背景图片
默认值:repeat
只向水平方向平铺:repeat-x
只向垂直方向平铺:repeat-y
不平铺:no-repeat
background-repeat:repeat-x;
图片大小
background-size: 500px 500px;
完全覆盖背景区域最小大小
background-size:cover;
background-size:contain;
背景图起始位置
background-position:top left;