Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我认为将您的 html 文件链接到您的 css 文件的方法是编写:
<link type= "text/css" rel= "firststylesheet" href= "firststylesheet.css"/>
(给定我的 css 文件名firststylesheet.css)但是当我将 css 和 html 文件上传到我的网站时,css 文件没有连接,并且所有网站正在读取我的 html 文件。我该如何解决?
firststylesheet.css
“rel”属性必须是“stylesheet”而不是“firststylesheet”
<link type="text/css" rel="stylesheet" href="firststylesheet.css"/>
我遇到了同样的问题,但我注意到我的名为 Stylesheet 的 css 错过了“.css”。所以我手动将其重命名为 stylesheet.css 并且它起作用了:)