標籤: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)的簡寫形式