我一直在阅读关于css的几个教程,并且我看到了两种不同的方式来说明哪个CSS文件应用于对页面进行样式化:
<style type="text/css">@import url("style.css");</style>
和
<link rel="stylesheet" type="text/css" href="style.css" />
他们有什么区别?我应该使用哪一个?
解决方法
除非您使用非常旧的浏览器(netscape 4.x和ie 3.x),否则没有多大的区别。你可以看到一个完整的下降,每个意味着什么
here。
From a standards viewpoint,there is no difference between linking to an external style sheet or importing it. Either way is correct,and either way will work equally well (in most cases).