0
<head>
    <title>Free Jokes!</title>
    <meta charset="utf-8">
    <style type = "text/css" src = "final project.css"></style>
</head> 

我有一个单独的经过验证的 css 文件。但我认为这不起作用的主要原因是,当我验证 html 时,它说“此时元素样式上不允许使用 src 属性”。

有什么建议么?提前致谢!

任何其他语法错误也将不胜感激......

4

4 回答 4

1

代替

 <style type = "text/css" src = "final project.css"></style>

和:

<link href="final project.css" rel="stylesheet">

看看如何包含 css:http ://www.w3schools.com/css/css_howto.asp

于 2013-07-25T07:32:47.810 回答
0

仅添加rel属性:

<link type="text/css" href="final project.css" rel="stylesheet" />

并避免在文件名中使用空格。

于 2013-07-25T07:57:01.497 回答
0

尝试

<link rel="stylesheet" href="final project.css">
于 2013-07-25T07:36:25.557 回答
0
<head>
    <title>Free Jokes!</title>
    <meta charset="utf-8" />
    <link type="text/css" href="final project.css" rel="stylesheet" />
</head> 

链接元素使用“href”而不是“src”

于 2013-07-25T07:32:26.060 回答