gpt4 book ai didi

html - 将 .css 链接到 .html 根本不起作用

转载 作者:行者123 更新时间:2023-11-28 04:07:19 25 4
gpt4 key购买 nike

<html  lang="en">
<head>
<title>My Resume</title>
<meta charset="utf-8" />

<style type="text/css">

body {
background: #007F5A /* spanish viridian */
}

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

</div>

</style>

</head>
<body>

我不知道为什么我的 .css 文件不会进入并与我的 .html 链接任何建议?顺便说一句,使用 NotePad++ 作为编辑器。

最佳答案

你的标签都搞混了。试试这个:

<html lang="en">
<head>
<title>My Resume</title>
<meta charset="utf-8" />
<link href="style.css" rel="stylesheet" type="text/css">
<style type="text/css">
body {
background: #007F5A /* spanish viridian */
}
</style>
</head>
<body>
...
</body>
</html>

关于html - 将 .css 链接到 .html 根本不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42894410/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com