css 最佳化代碼

來源:互聯網
上載者:User
最佳化代碼:網頁技術CSS的font屬性的縮寫的技巧

(from: http://www.webwoo.net/bc/bencandy-38-20144-1.htm)
最佳化代碼:網頁技術CSS的font屬性的縮寫的技巧,縮寫有利於減少代碼,最佳化CSS,使之更加合理。

  css font屬性是用來控制文字字型、顏色、大小等。而font的屬性有多種,在通常情況下,我們用縮寫的辦法將多種屬性概括在一句css代碼中。這樣極大的減小了代碼,最佳化css檔案。

  我們常用的font屬性有下面這六種:

font-style設定斜體 如:font-style: italic;
font-weight設定文字粗細 如:font-weight: bold;
font-size設定文字大小 如:font-size: 12px;
line-height設定行距 如:line-height: 150%;
color設定文字顏色(注意不是font-color) 如:color: red;
font-family設定字型 如:font-family : "Lucida Grande", Verdana, Lucida, Arial, Helvetica, 宋體,sans-serif;

  上述的屬性,我們可以概括寫在一行font屬性裡。需要注意的是color屬性我們需要單獨定義。

font: italic bold 12px/150% "Lucida Grande", Verdana, Lucida, Arial, Helvetica, 宋體,sans-serif;}

  上面的例子用一行來定義font屬性,分別是:font-style font-weight font-size line-height font-family;而color設定文字顏色需要單獨進行定義。

相關文章

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.