为什么我的css代码不能和html一起使用?[已关闭]

wmvff8tz  于 2023-02-14  发布在  其他
关注(0)|答案(2)|浏览(181)

编辑问题以包含desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem。这将有助于其他人回答问题。
昨天关门了。
Improve this question
当我用"用Live Server打开"打开html代码时,它不包括我的css代码,我错过了什么?我做错了什么?我如何让我的css代码与html一起工作?
截图:This is my css codeThis is my html code
我遵循了教程"CSS教程-初学者的完整课程",我遵循了他在做什么,但似乎我错了。我做了一遍,但仍然没有工作。

p {
  font-size: 64px;
  color: red;
}
<IDOCTYPE html>
<html lang="en">

<head>
  <meta charset="UTF-8">
  <meta http-equiv="X-UA-Compatible" content="IE=edge">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>Document</title>
  <link ref="stylesheet" href="style.css">
</head> 

<body>
  <p>I'm currently learning CSS!</p>
</body> 

</html>
db2dz4w8

db2dz4w81#

您的html中有一处排印错误,应该是rel=而不是ref=
<link rel="stylesheet" href="css/style.css">
第一条规则:在认为某个东西不起作用之前,总是先检查一下错别字。
如果你想学习编程,注意细节来观察和检测你的错别字是非常重要的(在这种情况下没有那么多需要筛选的,你应该已经能够看到它)
此外,我们理解,因为你是新的,但下次粘贴所有的代码与适当的格式,而不是链接到图像-这是更容易为我们帮助您,如果我们至少能够与文本工作。
希望这个有用。

35g0bw71

35g0bw712#

如果你已经在一个单独的页面中编写了css文件,那么你必须使用link标签,并将其与head标签中的html链接在一起。
语法如下:

<head    
    <link rel="stylesheet"href="mystyle.cs>
</head>

相关问题