背景顏色的設置
屬性:background-color? ? 可以簡寫成background
背景圖片
屬性:background:url(image)
? ? 當背景文小于容器時,圖片只顯示部分區(qū)域
? ? 當背景文大于容器時,圖片默認平鋪
? ? 當背景文等于容器時,圖片完整顯示
img和 background-image的區(qū)別 后者不占用空間,但是需要容器支持
背景平鋪屬性
background-repeat:no-repeat(不平鋪)/repeat(平鋪)/repeat-x/y(定位)
背景定位屬性:background-position:x y
屬性值:
? ? x軸水平方向:left,right,center
? ? y軸垂直方向:top,bottom,center
? ? 常規(guī)屬性值:正負值都可以
背景固定屬性:background-attachemt
屬性值:scroll/fixed(隨著瀏覽器滑動滾動/不會隨著瀏覽器滾動滑動圖片固定)
簡寫
background{? ? 顏色 圖片 平鋪 定位 固定?
}? ??