CSS中background屬性如何使用,針對這個問題,這篇文章詳細介紹了相對應(yīng)的分析和解答,希望可以幫助更多想解決這個問題的小伙伴找到更簡單易行的方法。
創(chuàng)新互聯(lián)主要從事成都網(wǎng)站建設(shè)、做網(wǎng)站、網(wǎng)頁設(shè)計、企業(yè)做網(wǎng)站、公司建網(wǎng)站等業(yè)務(wù)。立足成都服務(wù)敘州,10多年網(wǎng)站建設(shè)經(jīng)驗,價格優(yōu)惠、服務(wù)專業(yè),歡迎來電咨詢建站服務(wù):18980820575
background 屬性是background-color,background-image,background-position,background-attachment,background-repeat,這五個屬性的縮寫,優(yōu)點是比單個屬性書寫要簡單,要少寫很多代碼。就是有時令人在書寫這五個屬性的順序上有些困擾。下面一段代碼取自搜狐:
代碼如下:
.bBot{background:url(../images20130624/bg.png) no-repeat -1424px -5px;overflow:hidden;height:1px;clear:both;font-size:0px; overflow:hidden;}
.cBot{background:url(../images20130624/sohubg01.png) 0 -181px repeat-x;width:758px;height:6px;clear:both;font-size:1px;margin:0 auto;}
.bBot 選擇器的background屬性的順序是background-image,background-repeat,backgroundf-position。(background-repeat在前,backgroundf-position在后)
.cBot 選擇器的background屬性的順序是background-image,background-position,background-repeat。(background-position在前,background-repeat在后)
就是同一個公司的CSS的風格書寫都不一樣的,覺得有點不應(yīng)該。
那就讓我們看看CSS的background屬性的官方定義:
Value: ['background-color'> ||<'background-image'> || <'background-repeat'>|| <'background-attachment'> ||<'background-position'>] | inherit
Initial: see individual properties
Applies to: all elements
Inherited: no
Percentages: allowed on 'background-position'
Media: visual
Computed value: see individual properties
上面表格的內(nèi)容只是定義的background屬性的值包含那些內(nèi)容,但并沒有指定這些值的順序(不過可以認為這是建議順序,如果都這樣做,代碼可讀性更好)。
總結(jié):
background屬性的值的書寫順序官方并沒有強制標準的。
為了可讀性,定一個CSS書寫規(guī)范,規(guī)則2.1:background的值的順序是background-color,background-image,background-repeat,background-attachment,background-position。
關(guān)于CSS中background屬性如何使用問題的解答就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,如果你還有很多疑惑沒有解開,可以關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道了解更多相關(guān)知識。