还是只是一个个人偏好的东西?我得到的是,使用这两种方法有什么具体的好处吗?
<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@