CSS 背景
CSS 背景
CSS 背景屬性用於定義HTML元素的背景。
CSS 屬性定義背景效果:
- background-color
- background-image
- background-repeat
- background-attachment
- background-position
背景顏色
background-color 屬性定義了元素的背景顏色.
頁面的背景顏色使用在body,h1,p,div的選擇器中:
body {background-color:#b0c4de;}
h1 {background-color:#6495ed;}
p {background-color:#e0ffff;}
div {background-color:#b0c4de;}
CSS中,顏色值通常以以下方式定義:
- 十六進制 - 如:"#ff0000"
- RGB - 如:"rgb(255,0,0)"
- 顏色名稱 - 如:"red"
背景圖像
background-image 屬性描述了元素的背景圖像.
默認情況下,背景圖像進行平鋪重復顯示,以覆蓋整個元素實體.
頁面背景圖片設置實例:
body {background-image:url(‘paper.gif‘);}
背景圖像 - 水平或垂直平鋪
默認情況下 background-image 屬性會在頁面的水平或者垂直方向平鋪。
一些圖像如果在水平方向與垂直方向平鋪,這樣看起來很不協調,如下所示:
如果圖像只在水平方向平鋪 (repeat-x), 頁面背景會更好些:
body { background-image:url(‘gradient2.png‘); background-repeat:repeat-x; }
背景圖像- 設置定位與不平鋪
讓背景圖像不影響文本的排版
如果你不想讓圖像平鋪,你可以使用 background-repeat 屬性:
body { background-image:url(‘img_tree.png‘); background-repeat:no-repeat; }
以上實例中,背景圖像與文本顯示在同一個位置,為了讓頁面排版更加合理,不影響文本的閱讀,我們可以改變圖像的位置。
可以利用 background-position 屬性改變圖像在背景中的位置:
body { background-image:url(‘img_tree.png‘); background-repeat:no-repeat; background-position:right top; }
背景- 簡寫屬性
在以上實例中我們可以看到頁面的背景顏色通過了很多的屬性來控制。
為了簡化這些屬性的代碼,我們可以將這些屬性合並在同一個屬性中.
當使用簡寫屬性時,屬性值的順序為::
- background-color
- background-image
- background-repeat
- background-attachment
- background-position
body { background: #00ff00 url(‘smiley.gif‘) no-repeat fixed center; }
CSS background-attachment 屬性
body { background-attachment:fixed; }
屬性值
值 | 說明 |
---|---|
scroll | 背景圖片隨頁面的其余部分滾動。這是默認 |
fixed | 背景圖像是固定的 |
inherit | 指定background-attachment的設置應該從父元素繼承 |
background-size 屬性
div { background-size:80px 60px;//第一個值設置寬度,第二個值設置的高度 length
background-size:100% 100% // percent
}
length | 設置背景圖片高度和寬度。第一個值設置寬度,第二個值設置的高度。如果只給出一個值,第二個是設置為"atuo(自動)" |
percentage | 將計算相對於背景定位區域的百分比。第一個值設置寬度,第二個值設置的高度。如果只給出一個值,第二個是設置為"auto(自動)" |
cover | 此時會保持圖像的縱橫比並將圖像縮放成將完全覆蓋背景定位區域的最小大小。 |
contain | 此時會保持圖像的縱橫比並將圖像縮放成將適合背景定位區域的最大大小。 |
拉伸背景圖像 http://www.runoob.com/try/try.php?filename=trycss3_background-size2
四個背景圖像圖像橫向拉伸http://www.runoob.com/try/try.php?filename=trycss3_background-size3
CSS background-repeat 屬性
repeat | 背景圖像將向垂直和水平方向重復。這是默認 |
repeat-x | 只有水平位置會重復背景圖像 |
repeat-y | 只有垂直位置會重復背景圖像 |
no-repeat | background-image不會重復 |
inherit | 指定background-repea屬性設置應該從父元素繼承 |
CSS3 background-origin 屬性
暫未搞懂
CSS 背景