關於CSS中的背景屬性background簡述

像我以前提到的那樣,文檔樹中的每一個元素只是一個矩形盒子。這些盒子都有一個背景層,背景層能夠是徹底透明或者其它顏色,也能夠是一張圖片。此背景層由8個CSS屬性(加上1個簡寫的屬性)控制。學習

background-color

background-color屬性設置元素的背景顏色。它的值能夠是任意合法的顏色值或者是transparent關鍵字。url

.left { background-color: #ffdb3a; }
.middle { background-color: #67b3dd; }
.right { background-color: transparent; }

圖片描述

背景顏色繪製在由[background-clip](#backgroundclip)屬性指定的盒模型的區域內。若是還設置了任何背景圖像,則在它們後面繪製顏色層。與能夠有多個的圖像層不一樣,對於一個元素,咱們只能有一個顏色層。spa

background-image

background-image屬性定義元素的一個或多個背景圖像。它的值一般是用url()符號定義的圖像的url。也可使用none做爲它的值,但這樣會生成一個空的背景層3d

.left { background-image: url('ire.png'); }
.right { background-image: none; }

圖片描述

咱們也能夠指定多張背景圖片並經過逗號分隔。後面的圖片都會繪製在Z軸方向上前一個圖片的後面。code

.middle { 
  background-image: url('khaled.png'), url('ire.png');

  /* Other styles */
  background-repeat: no-repeat; 
  background-size: 100px;
}

圖片描述

background-repeat

background-repeat屬性控制背景圖片在被[background-size](#backgroundsize)屬性改變了大小及被[background-position](#backgroundposition )屬性定位後如何平鋪。blog

該屬性的值能夠是 repeat-x, repeat-y, repeat, space, round, no-repeat關鍵字,除了repeat-x和repeat-y,其餘值能夠爲x軸和y軸定義一次,也能夠單獨定義每一個維。圖片

.top-outer-left { background-repeat: repeat-x; }
.top-inner-left { background-repeat: repeat-y; }
.top-inner-right { background-repeat: repeat; }
.top-outer-right { background-repeat: space; }

.bottom-outer-left { background-repeat: round; }
.bottom-inner-left { background-repeat: no-repeat; }
.bottom-inner-right { background-repeat: space repeat; }
.bottom-outer-right { background-repeat: round space; }

圖片描述

background-size

background-size屬性定義背景圖片的大小,它的值能夠是關鍵字,長度或者百分比。ip

可用於此屬性的關鍵字爲「contains」和「cover」。contain將等比縮放圖像到最大的大小。另外一方面,cover將把圖像縮放到儘量小的尺寸,其中整個背景區域仍然被覆蓋。文檔

.left { 
  background-size: contain;
  background-image: url('ire.png'); 
  background-repeat: no-repeat;
}
.right { background-size: cover; /* Other styles same as .left */ }

圖片描述

對於長度和百分比,咱們能夠同時指定背景圖片的寬高,百分比值是根據元素的大小計算的。get

.left { background-size: 50px; /* Other styles same as .left */ }
.right { background-size: 50% 80%; /* Other styles same as .left */ }

圖片描述

background-attachment

background-attachment屬性控制控制背景圖像相對於視口和元素的滾動方式 。它有三個潛在的值。

fixed意味着背景圖片固定在視口而且不會移動,即便用戶正沿着視口滾動。local意味着背景圖片固定在它在元素中的位置。若是這個元素能夠滾動而且背景圖片定位在頂部,那麼當用戶向下滾動這個元素,背景圖片將會從視圖中滾出去。最後scroll意味着背景圖片是固定的且不會隨着元素內容的滾動而滾動。

.left { 
  background-attachment: fixed;
  background-size: 50%;
  background-image: url('ire.png'); 
  background-repeat: no-repeat;
  overflow: scroll;
}
.middle { background-attachment: local; /* Other styles same as .left */ }
.right { background-attachment: scroll; /* Other styles same as .left */ }

圖片描述

background-position

這個屬性結合background-origin屬性定義背景圖片的起始位置應在何處。它的值能夠是關鍵字,長度或者百分比,咱們能夠指定沿x軸和y軸的位置。

可用於此屬性的關鍵字爲top, right, bottom, left, 和center,咱們能夠任意組合這些關鍵字,若是隻明確指定了一個關鍵字,那麼另一個默認就是center。

.top-left { 
  background-position: top;
  background-size: 50%;
  background-image: url('ire.png'); 
  background-repeat: no-repeat;
}
.top-middle { background-position: right;  /* Other styles same as .top-left */ }
.top-right { background-position: bottom;  /* Other styles same as .top-left */ }
.bottom-left { background-position: left;  /* Other styles same as .top-left */ }
.bottom-right { background-position: center;  /* Other styles same as .top-left */ }

圖片描述

對於長度和百分比,咱們也能夠指定沿x軸和y軸的位置。百分比值是按元素的大小計算的。

.left { background-position: 20px 70px; /* Others same as .top-left */ }
.right { background-position: 50%; /* Others same as .top-left */ }

圖片描述

background-origin

background-origin屬性指定背景圖片應根據盒模型的哪一個區域進行定位。

當值爲border-box時,背景圖片的位置根據邊框區域定位,爲padding-box時其位置根據邊距區域定位,爲content-box時其位置根據內容區域定位。

.left { 
  background-origin: border-box;
  background-size: 50%;
  background-image: url('ire.png'); 
  background-repeat: no-repeat;
  background-position: top left; 
  border: 10px dotted black; 
  padding: 20px;
}
.middle { background-origin: padding-box;  /* Other styles same as .left*/ }
.right { background-origin: content-box;  /* Other styles same as .left*/ }

圖片描述

background-clip

background-clip屬性肯定背景繪製區域,這是背景能夠被繪製的區域。和background-origin屬性同樣,它也 基於盒子模型的區域。

.left{ 
  background-clip: border-box;
  background-size: 50%;
  background-color: #ffdb3a; 
  background-repeat: no-repeat;
  background-position: top left; 
  border: 10px dotted black; 
  padding: 20px;
}
.middle { background-clip: padding-box;  /* Other styles same as .left*/ }
.right { background-clip: content-box;  /* Other styles same as .left*/ }

圖片描述

background

最後,background屬性是其餘背景相關屬性的簡寫。子屬性的順序可有可無,由於每一個屬性的數據類型不一樣。然而對於background-origin 和 background-clip,若是隻指定了一個盒模型區域,那麼這兩個屬性都會應用這個值。若是指定了兩個,那麼第一個值將用於background-origin屬性。

學習更多的CSS技術能夠關注個人博客:CODECOLOR

圖片描述

相關文章
相關標籤/搜索