gpt4 book ai didi

html - CSS 内部链接不是相对于 css 文件?

转载 作者:行者123 更新时间:2023-11-28 01:04:43 27 4
gpt4 key购买 nike

我一定是遗漏了什么,css 内部文件链接是相对于 css 文件的吗?搜索,到目前为止每个来源都说是,但我的文件似乎不想加载字体 (fontawesome)。 index.html 文件加载并正确显示字体,所以我知道它正在工作;但是,加载 css 相对的 myfile.html 页面不起作用。为了使 myfile.html 正常工作,我必须更改 css 文件以相对于 myfile.html 页面加载(或看起来如此),所以 ../fonts/ 但这会破坏索引.html 页面。

由于事物的托管和完成方式,我必须保持所有事物的相关性,否则我将只使用 /fonts/ 但目前这不是一个选项。

同时为了让它更短,我只列出了所列示例所需的 fontawesome 部分

可能遗漏了一些简单的东西,但我提出的所有引用资料都说它应该相对于 .css 文件加载。

这是文件夹/文件结构

- home
- inc
myfile.html
- fontawesome
fontawesome.min.css
- fonts
index.html

---- index.html ----

<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="fontawesome/fontawesome.min.css" rel="stylesheet" type="text/css">
<title>Home Page</title>
</head>
<body>
<div><i class="fas fa-bars"></i> fun stuff here</div>
</body>
</html>

---- 我的文件.html ----

<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="../fontawesome/fontawesome.min.css" rel="stylesheet" type="text/css">
<title>myfile</title>
</head>
<body>
<div><i class="fas fa-bars"></i> fun stuff here</div>
</body>
</html>

---- fontawesome.min.css ----

.fa,.fab,.fal,.far,.fas{
-moz-osx-font-smoothing:grayscale;
-webkit-font-smoothing:antialiased;
display:inline-block;
font-style:normal;
font-variant:normal;
text-rendering:auto;
line-height:1
}
.fas.fa-pull-left{
margin-right:.3em
}
.fa.fa-pull-right,.fab.fa-pull-right,.fal.fa-pull-right,.far.fa-pull-right,.fas.fa-pull-right{
margin-left:.3em
}

@font-face{
font-family:"Font Awesome 5 Free";
font-style:normal;
font-weight:400;
src:url(fonts/fa-regular-400.eot);
src:url(fonts/fa-regular-400.eot?#iefix) format("embedded-opentype"),
url(fonts/fa-regular-400.woff2) format("woff2"),
url(fonts/fa-regular-400.woff) format("woff"),
url(fonts/fa-regular-400.ttf) format("truetype"),
url(fonts/fa-regular-400.svg#fontawesome) format("svg")
}
@font-face{
font-family:"Font Awesome 5 Free";
font-style:normal;
font-weight:900;
src:url(fonts/fa-solid-900.eot);
src:url(fonts/fa-solid-900.eot?#iefix) format("embedded-opentype"),
url(fonts/fa-solid-900.woff2) format("woff2"),
url(fonts/fa-solid-900.woff) format("woff"),
url(fonts/fa-solid-900.ttf) format("truetype"),
url(fonts/fa-solid-900.svg#fontawesome) format("svg")}

.fa,.far,.fas{
font-family:"Font Awesome 5 Free"
}
.fa,.fas{
font-weight:900
}

最佳答案

此时我只是从臀部射击。 :-) 尝试编辑 fontawesome.min.css 中的路径。只需将 ../添加到每个 URL,如下所示:

@font-face{
font-family:"Font Awesome 5 Free";
font-style:normal;
font-weight:400;
src:url(../fonts/fa-regular-400.eot);
src:url(../fonts/fa-regular-400.eot?#iefix) format("embedded-opentype"),
url(../fonts/fa-regular-400.woff2) format("woff2"),
url(../fonts/fa-regular-400.woff) format("woff"),
url(../fonts/fa-regular-400.ttf) format("truetype"),
url(../fonts/fa-regular-400.svg#fontawesome) format("svg")
}
@font-face{
font-family:"Font Awesome 5 Free";
font-style:normal;
font-weight:900;
src:url(../fonts/fa-solid-900.eot);
src:url(../fonts/fa-solid-900.eot?#iefix) format("embedded-opentype"),
url(../fonts/fa-solid-900.woff2) format("woff2"),
url(../fonts/fa-solid-900.woff) format("woff"),
url(../fonts/fa-solid-900.ttf) format("truetype"),
url(../fonts/fa-solid-900.svg#fontawesome) format("svg")}

关于html - CSS 内部链接不是相对于 css 文件?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52446996/

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