?亚洲中文无码av在线,爱如潮水在线播放视频,激情综合丁香五月

成都極客聯(lián)盟網(wǎng)站建設(shè)公司歡迎你的光臨!-我們成都專(zhuān)門(mén)負(fù)責(zé)的網(wǎng)站制作、網(wǎng)站維護(hù)與網(wǎng)站優(yōu)化推廣等相關(guān)業(yè)務(wù)!-

NEWS CENTER

網(wǎng)站建設(shè)資訊

極客網(wǎng)站建設(shè)-給你專(zhuān)業(yè)的網(wǎng)站建設(shè)知識(shí),事實(shí)網(wǎng)站設(shè)計(jì)資訊,我們將收集眾多網(wǎng)站建設(shè)客戶(hù)問(wèn)答。

關(guān)于CSS的縮寫(xiě)

時(shí)間:2014-10-29來(lái)源:極客聯(lián)盟閱讀:3951次類(lèi)別:網(wǎng)站建設(shè)

顏色
16進(jìn)制的色彩值,如果每?jī)晌坏闹迪嗤?,可以縮寫(xiě)一半,例如:#000000可以縮寫(xiě)為#000;#336699可以縮寫(xiě)為#369; #f2f2f2是不可以縮寫(xiě)的

盒模型的邊框
border-width:1px; 
border-style:solid; 
border-color:#000; 
可以縮寫(xiě)為一句:
border:1px solid #000; 
語(yǔ)法是border:width style color;

盒模型的邊界和填充
margin-top:1px; margin-right:2px; margin-bottom:3px; margin-left:4px;
margin:1px 2px 3px 4px;
注意:這里的順序是順時(shí)針,分別為:上右下左
margin:1px 2px;
margin:0;
注意:CSS中值為0時(shí)可以不帶單位,其它時(shí)候都必須帶單位

背景
background-color:#f00; 
background-image:url(background.gif); 
background-repeat:no-repeat; 
background-attachment:fixed; 
background-position:0 0; 
可以縮寫(xiě)為一句:
background:#f00 url(background.gif) no-repeat fixed 0 0;

字體
font-style:italic; 
font-variant:small-caps; 
font-weight:bold; 
font-size:1em; 
line-height:140%; 
font-family:"Lucida Grande",sans-serif; 
可以縮寫(xiě)為一句:
font:italic small-caps bold 1em/140% "Lucida Grande",sans-serif;
注意,如果你縮寫(xiě)字體定義,至少要定義font-size和font-family兩個(gè)值。

列表
list-style-type:square; 
list-style-position:inside; 
list-style-image:url(image.gif); 
可以縮寫(xiě)為一句:
list-style:square inside url(image.gif);