尽管使用了正确的机制,我仍然无法将不同目录中的样式表连接到我的HTML文件。我的目标是正确的水平吗?
' - '表示级别
这是我的文件结构:
myProject (家长)
-public(1st level)
- 样式表(第二级)
--- styles.css(第3级)
-Views(第1级)
- index.ejs(第二级)
HTML:
<!doctype html>
<html>
<head>
<title>Node Authentication</title>
<link rel="stylesheet" type="text/css" href="../styles.css">
</head>
答案 0 :(得分:1)
假设您在应用中以这种方式使用了Express Static
中间件:
app.use(express.static(__dirname + '/public'));
然后在你看来:
<!doctype html>
<html>
<head>
<title>Node Authentication</title>
<link rel="stylesheet" type="text/css" href="stylesheets/styles.css">
</head>
答案 1 :(得分:0)
假设myProject是你的html文件,试试
<link rel="stylesheet" type="text/css" href="public\stylesheets\styles.css" />