从 HTML 文件链接 CSS 文件时遇到问题。通过确保以下内容可以解决该问题:
在 HTML 文件中,rel 属性的值应设置为“stylesheet”而不是“希望这有效。 ”更正后的代码为:
<link rel="stylesheet" href="newcssstyle.css" type="text/css">
“newcssstyle.css”文件必须与其引用的 HTML 文件位于同一目录中。如果位于子文件夹中,请相应调整 href 属性路径。
情况 1: CSS 文件位于名为的子文件夹中“样式表。”
Parent Directory Name index.html Stylesheets newcssstyle.css
HTML:
<link rel="stylesheet" href="Stylesheets/newcssstyle.css">
情况 2: CSS 文件位于名为的不同子文件夹中"Html_files."
Parent Directory Name Html_files index.html Stylesheets newcssstyle.css
HTML:
<link rel="stylesheet" href="../Stylesheets/newcssstyle.css">
情况 3: CSS 文件与 HTML 位于同一目录中文件。
Parent Directory Name index.html newcssstyle.css
HTML:
<link rel="stylesheet" href="./newcssstyle.css">
以上是如何正确地将 CSS 文件链接到 HTML 文件?的详细内容。更多信息请关注PHP中文网其他相关文章!