您好,登錄后才能下訂單哦!
小編給大家分享一下CSS設置背景屬性的方法,希望大家閱讀完這篇文章后大所收獲,下面讓我們一起去探討吧!
背景相關屬性主要有:
background-color 背景顏色
background-image 背景圖片
background-repeat 是否平鋪 repeat (默認平鋪) | repeat-x(水平平鋪) | repeat-y (垂直平鋪)| no-repeat (不平鋪)
background-position 背景位置 length(百分數)|position(top center button left right) 一般兩個一起用,如果至指定一個方向另一個方向默認為center,兩種方法也可以混搭。方位名詞沒有順序區分,而使用百分數時時有順序的,先是水平后是垂直
background-attachment 背景固定還是滾動 scroll | fixed
background:背景顏色 背景圖片 是否平鋪 背景固定還是滾動 背景位置
#p1 { width: 300px; height: 300px; background-color: blue; /*默認是transparent透明的*/ /* background-color: transparent; */ background-image: url(Images/2.jpg); background-repeat: no-repeat; /*不平鋪,默認是水平垂直平鋪*/ /* background-repeat: repeat-y; */ /* background-repeat: repeat-x; */ /* background-position: right bottom; */ background-position: 10% center; background-attachment: fixed; }
想要背景半透明 在指定顏色時使用 rgba( r, g b ,a) ,a就是指明透明度
p { width: 100%; height: 300px; background-color: rgba(0, 0, 0, 0.6); }
當要使用多張背景圖片時使用background來指定多個url,每組之間用‘,’逗號隔開,若圖片有重疊,則前一張覆蓋后一張圖片,但是整體背景顏色必須在最后一個url后指定。
p { width: 100%; height: 300px; background: url(Images/2.jpg) no-repeat left top, url(Images/3.jpg) no-repeat right bottom blue; }
看完了這篇文章,相信你對CSS設置背景屬性的方法有了一定的了解,想了解更多相關知識,歡迎關注億速云行業資訊頻道,感謝各位的閱讀!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。