gpt4 book ai didi

HTML 类拒绝查看 CSS 文件

转载 作者:太空宇宙 更新时间:2023-11-04 06:39:49 25 4
gpt4 key购买 nike

我试图在我的 HTML 文件中使用一个名为“secondary”的类,并在我的 CSS 文件中设置它的属性,但它看起来像

HTML:

<!doctype html>
<html>
<head>
<title> My Webpage</title>
<link href="D:\Web_developing\css\styles.css" rel="stylesheet"/>
</head>

<body>
<h1>Main webpage</h1>

<ul>
<li><a href="D:\Web_developing\html\page2.html">page 2</a></li>
</ul>

<p class="secondary">this is the main page of the website</p>
</body>
</html>

CSS:

body {
color: green;
background: black;
font-family: arial;
text: white:
}
.secondary {
background: green;
color: blue
}

我希望给定类的段落具有在 CSS 文件中设置的属性。


在对文件路径进行一些测试后,我得出结论,问题似乎出在类上。可能有什么语法错误吗?

最佳答案

问题似乎与您指向 CSS 文件的链接有关。将 Assets 文件链接到您的网页时,最好使用相对路径。试试这个...

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

Learn more about file paths here - W3Schools

关于HTML 类拒绝查看 CSS 文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53897298/

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