Don't use @import

<link>相比,@import较慢,增加额外的页面请求,并可能导致其他不可预见的问题。

<!-- Use link elements -->
<link rel="stylesheet" href="core.css">

<!-- Avoid @imports -->
<style>
    @import url("more.css");
</style>
posted @ 2017-06-25 18:51  心已碎谁来慰  阅读(189)  评论(0)    收藏  举报