溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點(diǎn)擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

CSS的background匯總

發(fā)布時間:2021-09-03 17:10:05 來源:億速云 閱讀:123 作者:chen 欄目:web開發(fā)

這篇文章主要講解了“CSS的background匯總”,文中的講解內(nèi)容簡單清晰,易于學(xué)習(xí)與理解,下面請大家跟著小編的思路慢慢深入,一起來研究和學(xué)習(xí)“CSS的background匯總”吧!

所有背景屬性都不能繼承。

1. background-color

所有元素都能設(shè)置背景顏色。

background-color的默認(rèn)值是transparent;也就是說,如果一個元素沒有指定背景顏色,那么背景就是透明的,這樣其祖先元素的背景才能可見。

2. background-image

所有元素都能設(shè)置背景圖像;

背景圖像可以設(shè)置多個,中間用逗號隔開;背景圖像會層疊,寫在前面的層次在上面。

3. background-repeat

repeat(默認(rèn))/no-repeat/repeat-x/ repeat-y

4. background-attachment

scroll(默認(rèn))/fixed
 
5. background-position

像素法:以圖像左上角為起點(diǎn),第一個值為水平移動的距離,第二個值為垂直移動的距離;若只規(guī)定一個值,第二個值默認(rèn)為50%。

百分比法:百分比同時應(yīng)用于圖像和元素,相應(yīng)的點(diǎn)重合進(jìn)行定位。如果只指定一個百分?jǐn)?shù),意味著垂直方向為50%。

關(guān)鍵字法:top、right、bottom、left、center進(jìn)行組合定位;若只規(guī)定一個值,第二個值默認(rèn)為center。

注意:background-position可以為負(fù)值。

在默認(rèn)情況下,背景顏色延伸到邊框下面,背景圖像在padding區(qū)域的左上角。

6. background-size

設(shè)置背景圖像的尺寸;默認(rèn)值為auto。

像素法:第一個值設(shè)置寬度,第二個值設(shè)置高度;若只有一個值,第二個值為auto。

百分比法:以父元素的寬度和高度以基準(zhǔn)來計算。

關(guān)鍵字cover,不改變圖像寬高比例,在水平和垂直方向都鋪滿整個元素,有可能導(dǎo)致一部分圖像溢出。

關(guān)鍵字contain,不改變圖像寬高比例,盡可能拉伸,直到某一方向鋪滿整個元素,有可能導(dǎo)致另一方向沒有鋪滿。

7. background-origin

定義背景圖像的初始位置

border-box,邊框左上角。

padding-box,padding區(qū)域左上角;默認(rèn)值。

content-box,內(nèi)容區(qū)左上角。

8. background-clip

The CSS3 background-clip property specifies the painting area of the background.

The property takes three different values:

•border-box - (default) the background is painted to the outside edge of the border

•padding-box - the background is painted to the outside edge of the padding

•content-box - the background is painted within the content box

(英文的解釋得比較清楚)

(英文都是從W3Schools Online搬運(yùn))

關(guān)于background-origin和background-clip,它們是相互獨(dú)立的,互不干擾。

關(guān)于background的CSS寫法,個人認(rèn)為應(yīng)該邏輯明確、層次分明;具體而言:

background定義背景圖像,background-color定義背景顏色,background-clip定義背景顯示區(qū)域。

(個人見解,僅供參考)

Full Size Background Image

If we want to have a background image on a website that covers the entire browser window at all times.

The requirements are as follows:

• Fill the entire page with the image (no white space)

• Scale image as needed

• Center image on page

• Do not cause scrollbars

The following example shows how to do it; Use the html element (the html element is always at least the height of the browser window). Then set a fixed and centered background on it. Then adjust its size with the background-size property:

CSS Code復(fù)制內(nèi)容到剪貼板

  1. html {   

  2.      backgroundurl(img_flower.jpg) no-repeat center fixed;    

  3.      background-size: cover;   

  4.  }  

小tips:

利用背景圖像的水平平鋪,實現(xiàn)波浪式的邊框效果。

感謝各位的閱讀,以上就是“CSS的background匯總”的內(nèi)容了,經(jīng)過本文的學(xué)習(xí)后,相信大家對CSS的background匯總這一問題有了更深刻的體會,具體使用情況還需要大家實踐驗證。這里是億速云,小編將為大家推送更多相關(guān)知識點(diǎn)的文章,歡迎關(guān)注!

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

css
AI