background-color
background-image
background-repeat
background-size
background-position
background-attachment
background-clip
background-origin
background
我們可以使用 background-color
設(shè)置背景顏色。
以下代碼設(shè)置背景顏色。
<!DOCTYPE HTML>
<html>
<head>
<style type="text/css">
p {
background-color: lightgray;
}
</style>
</head>
<body>
<p>This is a test.<br/>
This is a test.<br/>
This is a test.<br/>
This is a test.<br/>
This is a test.<br/>
This is a test.<br/>
This is a test.<br/>
This is a test.<br/>
</p>
</body>
</html>
我們可以使用 background-image
設(shè)置背景圖像。
以下代碼設(shè)置背景圖像。
<!DOCTYPE HTML>
<html>
<head>
<style type="text/css">
p {
background-image: url('/statics/images/course/img_flowers.jpg');
background-size: 20px 20px;
background-repeat: repeat-x;
}
</style>
</head>
<body>
<p>This is a test. <br/>
This is a test. <br/>
This is a test. <br/>
This is a test. <br/>
This is a test. <br/>
This is a test. <br/>
This is a test. <br/>
This is a test. <br/>
</p>
</body>
</html>
z-index屬性的默認值為零。
我們可以使用 background-repeat
屬性控制圖像將如何覆蓋整個背景區(qū)域。
background-repeat
的允許值在下面的列表中描述。
您可以為水平和垂直重復(fù)設(shè)置值,但如果您只提供一個值,瀏覽器將在兩個方向使用該重復(fù)樣式。
但對于repeat-x和repeat-y,瀏覽器將使用無重復(fù)樣式作為第二個值。
以下代碼顯示了如何使用 background-repeat
以使背景圖像沿x軸重復(fù)。
<!DOCTYPE HTML>
<html>
<head>
<style type="text/css">
p {
background-image: url('/statics/images/course/img_flowers.jpg');
background-size: 20px 20px;
background-repeat: repeat-x;
}
</style>
</head>
<body>
<p>This is a test. <br/>
This is a test. <br/>
This is a test. <br/>
This is a test. <br/>
This is a test. <br/>
This is a test. <br/>
This is a test. <br/>
This is a test. <br/>
</p>
</body>
</html>
圖像在元素上水平重復(fù)。
屬性 | 描述 | CSS |
---|---|---|
background-attachment | 修復(fù)或滾動背景圖像與頁面的其余部分 | 1 |
background-clip | 設(shè)置背景的繪制區(qū)域 | 3 |
background-color | 設(shè)置背景顏色 | 1 |
background-image | 設(shè)置背景圖像 | 1 |
background-origin | 設(shè)置背景圖像的定位區(qū)域 | 3 |
background-position | 設(shè)置背景圖像的起始位置 | 1 |
background-repeat | 如何重復(fù)背景圖像 | 1 |
background-size | 設(shè)置背景圖像的大小 | 3 |
background | 背景屬性在一個聲明 | 1 |
更多建議: