background屬性
1.background-color 規定要使用的背景顏色。
body
{
background-color:yellow;
}
h1
{
background-color:#00ff00;
}
p
{
background-color:rgb(255,0,255);
}
2.background-position 規定背景影像的位置。
body
{
background-image:url('bgimage.gif');
background-repeat:no-repeat;
background-attachment:fixed;
background-position:center;
}
3.background-size 規定背景圖片的尺寸。
div
{
background:url(img_flwr.gif);
background-size:80px 60px;
background-repeat:no-repeat;
}
4.background-repeat 規定如何重複背景影像。
body
{
background-image: url(stars.gif);
background-repeat: repeat-y;
}
5.background-origin 規定背景圖片的定位區域。
div
{
background-image:url('smiley.gif');
background-repeat:no-repeat;
background-position:left;
background-origin:content-box;
}
6.background-clip 規定背景的繪製區域。
div
{
background-color:yellow;
background-clip:content-box;
}
7.background-attachment 規定背景影像是否固定或者隨著頁面的其餘部分滾動。
body
{
background-image: url(bgimage.gif);
background-attachment: fixed;
}
8.background-image 規定要使用的背景影像。
body
{
background-image: url(bgimage.gif);
background-color: #000000;
}
相關文章
- background 屬性
- css的background屬性CSS
- CSS background-origin屬性CSS
- CSS3的background屬性CSSS3
- CSS3 background-size 屬性CSSS3
- css毛玻璃效果(外加background屬性)CSS
- CSS3背景裁切屬性——background-clipCSSS3
- 學習CSS的background屬性及其取值(實踐)CSS
- css詳解background八大屬性及其含義CSS
- background 線性漸變
- CMake 屬性之全域性屬性
- defer 屬性和 async 屬性
- CSS 屬性篇(七):Display屬性CSS
- CMake 屬性之目錄屬性
- CMake 屬性之目標屬性
- Python - 物件導向程式設計 - 公共屬性、保護屬性、私有屬性Python物件程式設計
- 你有使用過css的屬性background-blend-mode嗎?說說它的運用場景有哪些?CSS
- CSS字型屬性和文字屬性詳解CSS
- Python 類的屬性與例項屬性Python
- python物件屬性管理(2):property管理屬性Python物件
- 根據屬性字串獲取屬性值字串
- CAD屬性編輯操作——物件屬性教程物件
- cssRules 屬性CSS
- previousElementSibling 屬性
- translucent屬性
- parentRule 屬性
- parentStyleSheet屬性
- cssText 屬性CSS
- Property屬性
- 私有屬性
- allowfullscreen 屬性
- ref屬性
- HTML 屬性HTML
- onreadystatechange 屬性
- DOM屬性
- jQuery 屬性jQuery
- jQuery設定disabled屬性與移除disabled屬性jQuery
- WPF 之 依賴屬性與附加屬性(五)