css: how to combine multiple stylesheets into one

后端 未结 7 753
轻奢々
轻奢々 2021-01-13 23:09

Does anyone know on how to combine multiple stylesheets into one? For example I have


<         


        
7条回答
  •  天命终不由人
    2021-01-13 23:29

    @import is not recommended... The largest problem is that it causes files to load sequentially (one has to wait for the other) instead of in parallel (at the same time). This wastes times and round trips and makes your web page load slower.

    [http://www.feedthebot.com/pagespeed/avoid-css-import.html][1]

    [1]: http://www.feedthebot.com/pagespeed/avoid-css-import.html you can read it here...

提交回复
热议问题