1、背景色·background-color:屬性值可以是任何合法的顏色值
這里我們用到的有: 英語單詞16進制rgb()hsl()transparent(透明)
background-color不能繼承,其默認值是transparent
2、背景圖片:backgroung-image:url(“圖片路徑”);如果是多個背景圖片,用逗號隔開
圖片路徑可以是相對路徑也可以是絕對路徑
默認值是none,表示背景上沒有放置任何圖像
background-image也不能繼承。事實上,所有背景屬性都不能繼承
3、background-repeat :默認值是repeat,平鋪,填滿整個背景
repeat-x圖像只在水平方向上重復(fù)
repeat-y圖像只在垂直方向上重復(fù),
no-repeat則不允許圖像在任何方向上平鋪
4、圖像在背景中的位置background-position
默認位置在左上角
屬性值可以是關(guān)鍵字:top、bottom、left、right和center
長度值:如100px或5cm
百分數(shù)值:50%(中間)100%(靠右/下)
比如:background-position:top center;靠上居中
background-position:50%;上下左右居中
等價的關(guān)鍵字:
background-position:center;圖片始終顯示中部
背景屬性連寫:
background: background-color background-image background-position background-repeat ;四個屬性順序不作要求