css 注釋寫法注意事項

來源:互聯網
上載者:User
一個小錯誤碼引起樣式在IE中無效

 #topNav, #header, .line, .threeColArea, .twoColArea {
    width: 960px;
    margin: 0 auto; /*統一設定外層寬度*/   不規範寫法
    clear: both;
}

 上面的寫法引起IE顯示不正常,一直沒有找到原因,在注釋中加上空格就顯示正常了。

 

一.注釋書寫規範

  1、行間注釋:

  直接寫於屬性值後面,如:  

#topNav, #header, .line, .threeColArea, .twoColArea {
    width: 960px;
    margin: 0 auto; /* 統一設定外層寬度 */   注意文字和*號前留空格
    clear: both;
}

  2、整段注釋:

  分別在開始及結束地方加入注釋,如:

/*=====搜尋條=====*/
.search {
border:1px solid #fff;
background:url(../images/icon.gif) no-repeat #333;
}

  /*=====搜尋條結束=====*/

 

更詳細見:
整出一個css書寫規範 http://www.cnblogs.com/sikeart/archive/2008/06/18/1224544.html

相關文章

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.