-2

我无法链接我的 CSS 样式表:

等级制度:

索引.html:

// index.html
<!DOCTYPE html>
<html>
  <head>
    <link href="css/index.css" type="text/css" rel="stylesheet">
  </head>
  <body>
    <p class="blue">Hello</p>
  </body>
</html>

索引.css:

// index.css
.blue {
  font:blue;
  font-size: 20px;
}
4

2 回答 2

7

“字体”属性不正确。

尝试替换这个:

.blue {
  font:blue;
  font-size: 20px;
}

这样 :

.blue {
  color:blue;
  font-size: 20px;
}

css 路径似乎正确,您可以在浏览器控制台的网络选项卡上检查,如果您收到 HTTP 200,则文件已加载,如果 404 则未找到。

于 2013-11-28T20:14:43.373 回答
0

试试 w3 css 验证器:http: //jigsaw.w3.org/css-validator/ 我遇到了类似的问题,它说 css 文件中有一个中文字符,但该文件在记事本和其他地方看起来很好。使用 BabelPad http://www.babelstone.co.uk/Software/BabelPad.html我发现该文件的编码是 UTF16LE。我将编码更改为 UTF8,它工作正常。

于 2014-04-20T21:12:24.577 回答