gpt4 book ai didi

html - 外部样式表引用异常

转载 作者:行者123 更新时间:2023-11-28 13:23:55 25 4
gpt4 key购买 nike

所以我是一个编程菜鸟,但我认为我有 CSS 引用……显然不是。我已经引用了样式表,我已经在外部、内部完成了这些工作。然而,出于某种原因,当我回去调整我之前开发的一个旧应用程序时,该应用程序最初将 CSS 包含在 HTML 中,然后将 CSS 移出,然后引用它,奇怪的是,CSS 完全停止工作。我的目录设置如下:

App name (folder)
static (folder)
main.css
templates (folder)
template_referencing_css.html
main.py
app.yaml

下面是我在 static 文件夹中尝试使用 main.css 的各种引用:

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

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

这是我将 main.css 移动到模板文件夹并引用它的模板时尝试的方法:

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

css 文件只是一个更长的版本:

body    {
font-family:sans-serif;
width: 850px;
background-color: #F0F8FF;
color: #008B8B;
margin: 0 auto;
padding: 10px;
}
.error {
color: red;
}
label {
display: block;
font-size: 20px;
}

最佳答案

删除前导斜杠 -

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

关于html - 外部样式表引用异常,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14385057/

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