CSS背景屬性

2021-10-16 12:52:31 字數 740 閱讀 6355

background-color 設定元素的背景顏色,屬性值為顏色值;

1 background-color:red;   //(紅色的背景顏色)

2 background:red; //(也可以這樣簡寫但不建議這樣寫)

//書寫**要規範 ,這樣就不容易出錯;

background-image 設定背景

background-repeat 背景的重複方式

4 repeat      所有方向重複 預設值

5 no-repeat 不重複

6 repeat-x 橫向重複

7 repeat-y 縱向重複

background-position 背景位置屬性

8 background-position: 橫向座標 縱向座標 ;
background-attachment 設定背景的滾動方式

9 fixed    背景繫結在頁面中不滾動

10 scroll 背景跟隨頁面滾動

background 背景綜合屬性

11.所有的背景屬性都可以在當前屬性中直接書寫,而且沒有順序

CSS背景屬性

背景顏色屬性 background color 這個屬性為html元素設定背景顏色,相當於html中bgcolor屬性。body 上面的 表示body這個html元素的背景顏色是翠綠色的。背景屬性 background image 這個屬性為html元素設定背景,相當於html中background...

CSS背景屬性

一 背景顏色 屬性 background color 取值 任何合法顏色或者transparent 注意 背景顏色會填充到元素的內容區域以及邊框區域 二 背景影象 作用 以圖象作為元素的背景 屬性 background image 取值 url 背景影象路徑 三 背景重複 屬性 background...

css背景屬性

css背景屬性 目錄 background attachment背景附件 設定背景影象是否固定或者隨著頁面的其餘部分滾動 background clip背景修剪 規定背景的繪製區域 background origin背景 規定 background position 屬性相對於什麼位置來定位 bac...