CSS分類編寫方法

來源:互聯網
上載者:User
大家寫CSS 可能是一個頁面一個吧 或者是一個頁面多個,用來實現不同的效果
這裡有一個更好的方法
一般是這樣分類:
首先不同作用的 css檔案 分開
如:
color.css  //負責顏色
layout.css //負責布局
typography.css  //負責字型
這樣可能看起來麻煩些
但是維護和多人協作起來 是相當的好的(因為每個人擅長的不同)
然後把這些都歸為basic.css類裡
basic.css 是這樣的:
@import url(color.css);
@import url(layout.css);
@import url(typography.css);
引用時 直接引用basic.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.