应把所有CSS样式都放在Head Tag
作者:admin
来源:未知
日期:2012-01-09
点击:0
不过, HTML规范的建议,将他们放在文件头标记。
主要的好处是,您的网页加载速度似乎更快一些。
Example Source Code [www.]<head> <title>应把所有CSS样式都放在Head Tag - www.</title>
<link rel="stylesheet" type="text/css" media="screen" href="path//file.css" />
<link rel="stylesheet" type="text/css" media="screen" href="path//anotherFile.css" />
</head>
While researching performance at Yahoo!, we discovered that moving stylesheets to the document HEAD makes pages appear to be loading faster. This is because putting stylesheets in the HEAD allows the page to render progressively.
- ySlow Team