外部CSS样式表不起作用。

时间:2014-10-11 09:47:35

标签: html stylesheet

<head>
 <title>
  My Site
 </title>
 <style>
  <link rel="stylesheet" type="text/css" href="design.css">
 </style>
</head>    

我无法弄清楚如何修复它。我的页面完全不受样式表的影响。

2 个答案:

答案 0 :(得分:6)

link不应放在style标记内。正确的例子:

<head>
 <title>
  My Site
 </title>
 <link rel="stylesheet" type="text/css" href="design.css">
</head> 

答案 1 :(得分:3)

<head>
    <title>
        My Site
    </title>
    <link rel="stylesheet" type="text/css" href="design.css">
</head>

想要链接外部样式表时不要使用样式, 只有在必须在HTML文档中编写CSS时才使用样式。

了解更多信息:http://www.w3schools.com/css/css_howto.asp