這篇文章主要為大家展示了“CSS中怎么設(shè)置背景屬性”,內(nèi)容簡而易懂,條理清晰,希望能夠幫助大家解決疑惑,下面讓小編帶領(lǐng)大家一起研究并學(xué)習(xí)一下“CSS中怎么設(shè)置背景屬性”這篇文章吧。
常州網(wǎng)站建設(shè)公司創(chuàng)新互聯(lián),常州網(wǎng)站設(shè)計制作,有大型網(wǎng)站制作公司豐富經(jīng)驗。已為常州上千提供企業(yè)網(wǎng)站建設(shè)服務(wù)。企業(yè)網(wǎng)站搭建\成都外貿(mào)網(wǎng)站制作要多少錢,請找那個售后服務(wù)好的常州做網(wǎng)站的公司定做!
背景相關(guān)屬性主要有:
background-color背景顏色
background-image背景圖片
background-repeat是否平鋪repeat(默認(rèn)平鋪)|repeat-x(水平平鋪)|repeat-y(垂直平鋪)|no-repeat(不平鋪)
background-position背景位置length(百分?jǐn)?shù))|position(topcenterbuttonleftright)一般兩個一起用,如果至指定一個方向另一個方向默認(rèn)為center,兩種方法也可以混搭。方位名詞沒有順序區(qū)分,而使用百分?jǐn)?shù)時時有順序的,先是水平后是垂直
background-attachment背景固定還是滾動scroll|fixed
background:背景顏色背景圖片是否平鋪背景固定還是滾動背景位置
#p1{
width:300px;
height:300px;
background-color:blue;/*默認(rèn)是transparent透明的*/
/*background-color:transparent;*/
background-image:url(Images/2.jpg);
background-repeat:no-repeat;/*不平鋪,默認(rèn)是水平垂直平鋪*/
/*background-repeat:repeat-y;*/
/*background-repeat:repeat-x;*/
/*background-position:rightbottom;*/
background-position:10%center;
background-attachment:fixed;
}
想要背景半透明在指定顏色時使用rgba(r,gb,a),a就是指明透明度
p{
width:100%;
height:300px;
background-color:rgba(0,0,0,0.6);
}
當(dāng)要使用多張背景圖片時使用background來指定多個url,每組之間用‘,’逗號隔開,若圖片有重疊,則前一張覆蓋后一張圖片,但是整體背景顏色必須在最后一個url后指定。
p{
width:100%;
height:300px;
background:url(Images/2.jpg)no-repeatlefttop,url(Images/3.jpg)no-repeatrightbottomblue;
}
以上是“CSS中怎么設(shè)置背景屬性”這篇文章的所有內(nèi)容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內(nèi)容對大家有所幫助,如果還想學(xué)習(xí)更多知識,歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道!