VS代码中的链接CSS和html出现问题,外部CSS文件出现问题

2exbekwf  于 2023-02-06  发布在  其他
关注(0)|答案(2)|浏览(147)

我在VS代码工作,我是初学者。我知道如何用html风格写css,但css不能在外部文件中工作。
我的代码:

<!DOCTYPE html>
<html lang="en">
<meta charset="UTF-8">
<title>WHY</title>
<meta name="viewport" content="width=device-width,initial-scale=1">
<link rel="style" href="style.css">
<style>
</style>
<body>
    <h1>rozkaz</h1>
    <p>smiech</p>
    <b>haha</b>
    <em>hehe</em>
    <mark style="background-color: blue;">hihi</mark>
    <p>Das ist  <del>ein</del>  kein Hund.</p>
    <p>Das ist  <del>ein</del>  <ins>kein</ins>  Hund.</p>
    <sup>hoho</sup>
</body>
</html>

CSS:

h1 {
    color: bisque;
}

我尝试了很多教程,但它没有工作。

h5qlskok

h5qlskok1#

<head>
  <link rel="stylesheet" href="style.css">
</head>

rel="style"应该替换为rel="stylesheet"。同样,最好在<head>标记中包含样式表

8yoxcaq7

8yoxcaq72#

link标记中有错误。rel属性应该是“stylesheet”而不是“style”。

<link rel="stylesheet" href="style.css">

相关问题