CSS–背景(Background)

來源:互聯網
上載者:User

background:

background為符合屬性.屬性如下:

background:background-color ||background-image || background-repeat || background-attachment || background-position

 

background-color:

預設值:tansparent

取值 描述(背景顏色) 例子 效果
transparent 背景顏色透明
    <div style="background-color:Aqua">        <span style="border:solid 1px black">span</span><br />        div    </div>
color 指定顏色
1.系統定義的顏色
2.rgb(100,100,100)
3.#FFEE11
    <div style="background-color:Silver">和諧社會</div>    <div style="background-color:rgb(100,200,90)">和諧社會</div>    <div style="background-color:#ff11f6">和諧社會</div>

 

background-image:

預設值:none

取值 描述(背景圖片) 例子 效果
none 沒有背景圖片
    <div style="background-image:none">Background</div>
url(url)


使用絕對或相對的url指定背景圖片

    <div style="background-image:url('del.gif')"></div>

 

background-repeat:

預設值:repeat

取值 描述(背景平鋪) 例子 效果
repeat 在橫向和縱向上平鋪
 
<div style="background-image:url('del.gif'); background-repeat:repeat"></div>
no-repeat 不平鋪
<div style="background-image:url('del.gif'); background-repeat:no-repeat"></div>
repeat-x 在橫向上平鋪
<div style="background-image:url('del.gif'); background-repeat:repeat-x"></div>
repeat-y 在縱向上平鋪
<div style="background-image:url('del.gif'); background-repeat:repeat-y"></div>

 

background-attachment:

預設值:scroll

取值 描述(背景滾動) 例子 效果
scroll 跟隨內容滾動
<body  style="background-image:url('del.gif'); background-repeat:no-repeat;     background-attachment:scroll"></body>
隨著捲軸的移動,可能就看不到了.
fixed 不論怎樣滾動,始終固定在頁面上
<body  style="background-image:url('del.gif'); background-repeat:no-repeat;     background-attachment:fixed "></body>
始終顯示

 

background-position:

預設值:0% 0%

如果只指定了一個值,該值將用於橫座標。縱座標將預設為 50% 。如果指定了兩個值,第二個值將用於縱座標。

表達 例子 效果
background-position: length || length
百分數 | 由浮點數字和單位標識符組成的長度值
<div style="background-image:url('del.gif'); background-position:10px 10px;      background-repeat:no-repeat">    </div><br /><div style="background-image:url('del.gif'); background-position:50% 50%;      background-repeat:no-repeat"></div>
background-position:position||position

第一個position: top center bottom
第二個position: left center right

 
<div style="background-image:url('del.gif'); background-position:left center;     background-repeat:no-repeat">    </div><br /><div style="background-image:url('del.gif'); background-position:center center;     background-repeat:no-repeat"></div>

 

屬性名稱 取值 預設值
background-position-x length/left/center/right 0%
background-position-y length/top/center/bottom 0%

 

layer-background-color:

取值 描述 例子 效果
transparent 背景色透明    
color 指定顏色    
相關文章

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.