html – 最好使用链接标签或样式标签来导入CSS?

前端之家收集整理的这篇文章主要介绍了html – 最好使用链接标签或样式标签来导入CSS?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
还是只是一个个人偏好的东西?我得到的是,使用这两种方法有什么具体的好处吗?
<link href="main.css" rel="stylesheet" type="text/css">

与@H_404_5@

<style type="text/css">
@import url('main.css');
</style>

解决方法

根据雅虎的 Best Practices for Speeding Up Your Web Site,总是使用< link>而不是@import。更多详细信息,请参阅 this blog post

In IE (tested on 6,7,and 8),@import
causes the stylesheets to be
downloaded sequentially. Downloading
resources in parallel is key to a
faster page. This behavior in IE
causes the page to take a longer time
to finish.@H_404_5@

使用< link>允许浏览器打开其他连接,从而减少加载时间。@H_404_5@

原文链接:https://www.f2er.com/html/232562.html

猜你在找的HTML相关文章