###背景與顏色
#前景色 color 會(huì)作為border、text讯沈、box-shadow的默認(rèn)值。
#css3 : currentColor? 當(dāng)前顏色婿奔。用在其他屬性上缺狠,比如bgc问慎、linear-gradient上。場(chǎng)景:希望元素的背景顏色和邊框一致挤茄,
'''
color : red;
background-color: currentColor;
```
#透明 transparent
##background-image
#background-repeat: no-repeat;不重復(fù)
#background-size: cover;填充//contain 等比例盡量大 //? x? y?
#background-attachment 附著 fixed 定在視口上 //scoll 跟隨元素如叼。local 圖片跟隨元素內(nèi)容?
#background-origin 起始渲染位置 border-box padding-box content-box
#