CSS中(font和background)的簡寫形式

來源:互聯網
上載者:User

標籤:tac   背景圖片   center   otto   字型   time   no-repeat   固定   映像   

轉自:http://blog.csdn.net/shenzhennba/article/details/7356095

 

1.字型屬性主要包括下面幾個:
font-family(字型族): “Arial”、“Times New Roman”、“宋體”、“黑體”等;
font-style(字型樣式): normal(正常)、italic(斜體)或oblique(傾斜);
font-variant (字型變化): normal(正常)或small-caps(小體大寫字母);
font-weight (字型濃淡): 是normal(正常)或bold(加粗)。有些瀏覽器甚至支援採用100到900之間的數字(以百為單位);
font-size(字型大小): 可通過多種不同單位(比如像素或百分比等)來設定, 如:12xp,12pt,120%,1em

   如果用 font屬性的話,就可以把幾個樣式進行簡化,減少書的情況;font 屬性的值應按以下次序書寫(各個屬性之間用空格隔開):
font-style | font-variant | font-weight | font-size | font-family
例如: 
.fontStyle01{
        font-style: italic;
        font-variant: normal
        font-weight: bold;
        font-size: 30px;
        font-family: arial, sans-serif;
    }
上面的樣式簡寫為:
.fontStyle01{font:italic normal bold 12px arial,verdana;}

 

2.背景
 background-color:#999999; //元素的背景色
 background-image : url("path/bgFile.gif"); //設定背景映像
 background-repeat : repeat-x | repeat-y | repeat | no-repeat; //設定重複方式
 background-attachment : fixed | scroll; //設定背景圖片的固定方式
 background-position : X軸座標,Y軸座標[top,bottom,center,left,right,20px,10%];  //設定背景的左上方位置,座標可以是以百分比或固定單位

background縮寫各個值的次序依次如下:
background-color | background-image  | background-repeat | background-attachment | background-position
   如果省略某個屬性不寫出來,那麼將自動為它取預設值。比如,如果去掉background-attachment和background-position的話:
background: #FFCC66 url("butterfly.gif") no-repeat;
例如:
.bg01{
   background-image: url("path/bgFile.gif");
   background-repeat: no-repeat;
   background-attachment: fixed;
   background-position: left top;
}

上面可以簡寫為:
.bg01{
   background:#FFCC66  url("path/bgFile.gif")  no-repeat  fixed  left  top;
}

CSS中(font和background)的簡寫形式

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

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.