所以我是一个编程菜鸟,但我认为我有 CSS 引用...显然不是。我已经引用了样式表,我已经在外部、内部完成了它,你知道的,作品。然而,出于某种原因,当我回过头来调整一个我曾经开发过的旧应用程序时,该应用程序最初将 CSS 包含在 HTML 中,然后将 CSS 移出,然后引用它,奇怪的是,CSS 完全停止了工作。我的目录设置如下:
App name (folder)
static (folder)
main.css
templates (folder)
template_referencing_css.html
main.py
app.yaml
所以这里是我尝试过的各种参考,其中 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;
}