gpt4 book ai didi

HTML 文件不加载 style.css 文件

转载 作者:行者123 更新时间:2023-11-28 05:48:38 25 4
gpt4 key购买 nike

我正在做一个小网页,但现在遇到了一个小问题。我的 html 文件不会加载样式文件,即使它们位于同一文件夹中。我检查了 w3schools 中的 css 文件,它工作正常。我知道这个话题已经存在,但我无法通过阅读这些来解决我的问题。我的 html 编码看起来像这样

<html>
<head>
<title>Smile's app</title>
<link href="style.css" rel="stylesheet" type="text/css" />
</head>

<body>
<h2>Hello Dude</h2>
<a href="http://www.w3schools.com/html/">Visit our HTML tutorial</a>

<blockquote>Nerds like us are allowed to be unironically enthusiastic about stuff. Nerds are allowed to love stuff - like, jump-up-and-down-in-your-chair-can't-control-yourself love it. When people call other people nerds, mostly what they're saying is "You like stuff", which is not a good insult at all. Like, "You are too enthusiastic about the miracle of human consciousness".</blockquote>
<div class="cite">John Green</div>

<li><a href="static/indexx.html">page2</a></li>

</body>
</html>

css 编码看起来像这样

blockquote {
background-color: black;
color: yellow;
padding: 10px;
}

.cite {
text-align: right;
font-weight: bold;
font-size: x-large;
}

不,我通过 web 控制台样式编辑器发现存在以下错误

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN">
<title>404 Not Found</title>
<h1>Not Found</h1>
<p>The requested URL was not found on the server. If you entered the URL manually please check your spelling and try again.</p>

我真的希望有人能帮助我。

最佳答案

我还建议您查看文件夹结构。

您是在本地环境还是在某个远程环境中进行开发?

您使用的是某种网络服务器(例如 Apache)还是通过 file:/// 访问文件?

如你所说:

In the browser "style editor" I am getting the following

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN"> 
<title>404 Not Found</title>
<h1>Not Found</h1>
<p>The requested URL was not found on the server. If you entered the URL manually please check your spelling and try again.</p>

How can I make these changes?

在我看来,服务器无法访问 css 文件。您是否检查过文件的访问权限和所有者?

很抱歉,这就是我现在可以推荐的所有内容,并且您可能已经自己尝试过 id,但我个人认为解决方案必须位于文件系统的某个位置,因为这两个文件似乎都是正确的。

关于HTML 文件不加载 style.css 文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37465982/

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