網頁製作中養成良好的CSS編碼習慣

來源:互聯網
上載者:User
css|編碼|網頁

  1、為CSS選定正確的字元集。

  這個問題可能沒有引起很多人的注意,但是在網站開發的過程中,我發現為CSS選定正確的字元集是相當重要的,如果你的網頁使用的是GB2312那就在CSS檔案的頂部加上一句@charset "gb2312";這樣能夠保證CSS與網頁保持使用同樣的字元集,如果網頁使用的是utf-8,那就在CSS檔案頂部加上@charset "utf-8";

  2、正確規劃CSS

  通常情況下,我會在CSS檔案的開始部分定義一些常用的樣式,如下例:

body {font:12px Arial, Helvetica, sans-serif;color:#000;background:#fff;padding:0px;margin:0px;text-align:center;}
div,form,img,ul,ol,li,dl,dt,dd,p {margin:0;padding:0;border: 0;}
ul{float:left;}
li{list-style:none;}
a{ text-decoration:none;}

  這已經成了我的一種習慣,把網頁中常用的元素的基本樣式先定義,遇到特殊情況再重新定義,這樣可以大大的減少CSS檔案的大小,也更有利於CSS的維護。

  3、學會使用CSS縮寫文法

  建議大家看看這篇文章常用CSS縮寫文法總結



相關文章

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.