Don't use @import
Posted 心已碎谁来慰
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Don't use @import相关的知识,希望对你有一定的参考价值。
与<link>
相比,@import
较慢,增加额外的页面请求,并可能导致其他不可预见的问题。
<!-- Use link elements -->
<link rel="stylesheet" href="core.css">
<!-- Avoid @imports -->
<style>
@import url("more.css");
</style>
以上是关于Don't use @import的主要内容,如果未能解决你的问题,请参考以下文章
JMeter Don't use GUI mode for load testing!
入职这一段时间的总结,Don't Repeat Yourself.