###背景與顏色
#前景色 color 會作為border、text、box-shadow的默認值。
#css3 : currentColor? 當前顏色。用在其他屬性上,比如bgc、linear-gradient上。場景:希望元素的背景顏色和邊框一致,
'''
color : red;
background-color: currentColor;
```
#透明 transparent
##background-image
#background-repeat: no-repeat;不重復
#background-size: cover;填充//contain 等比例盡量大 //? x? y?
#background-attachment 附著 fixed 定在視口上 //scoll 跟隨元素。local 圖片跟隨元素內容?
#background-origin 起始渲染位置 border-box padding-box content-box
#