首页 > 开发 > CSS > 正文

CSS样式表尽量放到网页头部

2024-07-11 09:04:01
字体:
来源:转载
供稿:网友

武林网(www.vevb.com)文章简介:不过, HTML规范的建议,将他们放在文件头标记。主要的好处是,您的网页加载速度似乎更快一些。

  从技术上讲,你可以将样式您想要的位置。
  不过, HTML规范的建议,将他们放在文件头标记。
  主要的好处是,您的网页加载速度似乎更快一些。

<head>  
    <title>应把所有CSS样式都放在Head Tag - </title>  
    <link rel="stylesheet" type="text/css" media="screen" href="path/webjx.com/file.css" />  
    <link rel="stylesheet" type="text/css" media="screen" href="path/webjx.com/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

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表