国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 開發 > CSS > 正文

10個CSS簡寫/優化技巧整理

2024-07-11 08:25:50
字體:
來源:轉載
供稿:網友

CSS簡寫就是指將多行的CSS屬性簡寫成一行,又稱為CSS代碼優化或CSS縮寫。CSS

簡寫的最大好處就是能夠顯著減少CSS文件的大小,優化網站整體性能,更加容易閱讀。 下面介紹常見的CSS簡寫規則:

一、盒子大小

這里主要用于兩個屬性:margin和padding,我們以margin為例,padding與之相同。

盒子有上下左右四個方向,每個方向都有個外邊距:

margin-top:1px; margin-right:2px; margin-bottom:3px; margin-left:4px;

你可以簡寫成:

margin:1px 2px 3px 4px;

語法 margin: top right bottom left

//四個方向的邊距相同,等同于margin:1px 1px 1px 1px; margin:1px; //上下邊距都為1px,左右邊距均為2px,等同于margin:1px 2px 1px 2px margin:1px 2px; //右邊距和左邊距相同,等同于margin:1px 2px 3px 2px; margin:1px 2px 3px; //注意,這里雖然上下邊距都為1px,但是這里不能縮寫。 margin:1px 2px 1px 3px;

二、邊框(border)

邊框的屬性如下:

border-width:1px; border-style:solid; border-color:#000;

可以縮寫為一句:

border:1px solid #000;


語法 border:width style color;

三、背景(Backgrounds)

背景的屬性如下: 

background-color:#f00; background-image:url(background.gif); background-repeat:no-repeat; background-attachment:fixed; background-position:0 0;

可以縮寫為一句:

background:#f00 url(background.gif) no-repeat fixed 0 0;

語法是background:color image repeat attachment position;

你可以省略其中一個或多個屬性值,如果省略,該屬性值將用瀏覽器默認值,默認值

為:

color: transparent image: none repeat: repeat attachment: scroll position: 0% 0%

四、字體(fonts)

字體的屬性如下:

font-style:italic; font-variant:small-caps; font-weight:bold; font-size:1em; line-height:140%; font-family:"Lucida Grande",sans-serif;

可以縮寫為一句:

font:italic small-caps bold 1em/140% "Lucida Grande",sans-serif;

注意,如果你縮寫字體定義,至少要定義font-size和font-family兩個值。

五、列表(lists)

取消默認的圓點和序號可以這樣寫list-style:none;,
list的屬性如下:

list-style-type:square; list-style-position:inside; list-style-image:url(image.gif);

可以縮寫為一句:

list-style:square inside url(image.gif);


六、顏色(Color)

發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 岳阳市| 湄潭县| 深圳市| 察雅县| 昂仁县| 平泉县| 湾仔区| 工布江达县| 日照市| 太仓市| 盐亭县| 台中县| 萍乡市| 晋宁县| 丰镇市| 吉安县| 梧州市| 凤翔县| 扶绥县| 琼结县| 韶山市| 茶陵县| 余江县| 台安县| 凤城市| 富川| 平武县| 威远县| 锦州市| 蒲江县| 阳高县| 都匀市| 乌兰浩特市| 尖扎县| 鄂托克旗| 九江县| 金坛市| 郑州市| 林甸县| 财经| 聂荣县|