[A] 背景拓展
background-size: 设置背景图的尺寸大小
参数:
a, b 用数字设置长和宽(px)
contain 包含,即背景图以最大尺寸呈现在父元素中
cover 覆盖,即背景图的局部充满整个父元素
background-origin: 设置背景图的填充位置
参数:
padding-box 背景填充在padding区域,默认值
border-box 背景填充在border区域
content-box 背景填充在content区域
background-clip:
padding-box 裁剪出padding区域的背景,默认值
border-box 裁剪出border区域的背景
content-box 裁剪出content区域的背景
【注】可写在background的符合样式中