【CSS筆記八】CSS代碼縮寫,佔用更少的頻寬

來源:互聯網
上載者:User
一、盒模型代碼簡寫
還記得在講盒模型時外邊距(margin)、內邊距(padding)和邊框(border)設定上下左右四個方向的邊距是按照順時針方向設定的:上右下左。具體應用在margin和padding的例子如下:

margin:10px 15px 12px 14px;/*上設定為10px、右設定為15px、下設定為12px、左設定為14px*/

通常有下面三種縮寫方法:

1、如果top、right、bottom、left的值相同,如下面代碼:

margin:10px 10px 10px 10px;

可縮寫為:

margin:10px;

2、如果top和bottom值相同、left和 right的值相同,如下面代碼:

margin:10px 20px 10px 20px;

可縮寫為:

margin:10px 20px;

3、如果left和right的值相同,如下面代碼:

margin:10px 20px 30px 20px;

可縮寫為:

margin:10px 20px 30px;

注意:padding、border的縮寫方法和margin是一致的。

二、顏色值縮寫
關於顏色的css樣式也是可以縮寫的,當你設定的顏色是16進位的色彩值時,如果每兩位的值相同,可以縮寫一半。

例子1:

p{color:#000000;}可以縮寫為:p{color: #000;}例子2:p{color: #336699;}可以縮寫為:p{color: #369;}

三、字型縮寫
網頁中的字型css樣式代碼也有他自己的縮寫方式,下面是給網頁設定字型的代碼:

body{ font-style:italic; font-variant:small-caps; font-weight:bold; font-size:12px; line-height:1.5em; font-family:"宋體",sans-serif; }

這麼多行的代碼其實可以縮寫為一句:

body{ font:italic small-caps bold 12px/1.5em "宋體",sans-serif; }

注意:

1、使用這一簡寫方式你至少要指定 font-size 和 font-family 屬性,其他的屬性(如 font-weight、font-style、font-varient、line-height)如未指定將自動使用預設值。

2、在縮寫時 font-size 與 line-height 中間要加入“/”斜扛。

一般情況下因為對於中文網站,英文還是比較少的,所以下面縮寫代碼比較常用:

body{ font:12px/1.5em "宋體",sans-serif; }

只是有字型大小、行間距、中文字型、英文字型設定。

以上就是【CSS筆記八】CSS代碼縮寫,佔用更少的頻寬的內容,更多相關內容請關注topic.alibabacloud.com(www.php.cn)!

  • 相關文章

    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.