提问人:Talha Sajjad 提问时间:11/5/2023 更新时间:11/5/2023 访问量:29
为什么样式包括 ../static/style.css 不以我的静态文件夹中的 style.css 为目标
Why is style include ../static/style.css not targeting style.css in my static folder
问:
我输入的样式包括../static/style.css 在 index.pug 中,它以我的静态文件夹中的 style.css 为目标,但在网页中它不会改变我的标题或段落,我的意思是它们的字体系列
这是我的风格.css:
*{
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; }
这是我的index.pug:
{
语言: 哈巴狗
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>#{title}</title>
style include ../static/style.css
</head>
<body>
your text
这是使用 PUG --> 的纯 HTML
<h1 id="h1"> This is Heading</h1> <p> <!-- This is a plain html using pug --> | #{content} </p>
</body> }
这是我的 查看页面来源:
{
<html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Pubg is the best game </title><style>include ../static/style.css </style></head> <body>
<!-- <h1>This is plain HTML using PUG</h1> -->
}<h1 id="h1"> This is Heading</h1>
<p> <!-- This is a plain html using pug -->This is the best content on the internet so far so use it wisely </p></body>
我尝试使用聊天 gpt,但它只是不断堆积问题,我期待这种风格包括....../static/style.css 将针对我的 style.css 并在我的网页中应用字体系列
答: 暂无答案
评论