不能 link 到 fontello 的外部样式表
can't link to an external stylesheet for fontello
我想看这个:
当我在 <style></style>
标签之间包含修改后的 fontello CSS 时它起作用:
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<!-- <link rel="stylesheet" type="text/css" href="css/fontello_mod.css"/> -->
</head>
<style>
@font-face {
font-family: 'fontello';
src: url('font/fontello.eot?47332372');
src: url('font/fontello.eot?47332372#iefix') format('embedded-opentype'),
url('font/fontello.woff?47332372') format('woff'),
url('font/fontello.ttf?47332372') format('truetype'),
url('font/fontello.svg?47332372#fontello') format('svg');
font-weight: normal;
font-style: normal;
}
.icon {
font-family: "fontello";
font-style: normal;
font-weight: normal;
speak: none;
display: inline-block;
text-decoration: inherit;
width: 1em;
margin-right: .2em;
text-align: center;
/* opacity: .8; */
/* For safety - reset parent styles, that can break glyph codes*/
font-variant: normal;
text-transform: none;
/* fix buttons height, for twitter bootstrap */
line-height: 1em;
/* Animation center compensation - margins should be symmetric */
/* remove if not needed */
margin-left: .2em;
/* You can be more comfortable with increased icons size */
font-size: 220%;
/* Font smoothing. That was taken from TWBS */
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
</style>
<body>
<i class="icon"></i><i class="icon"></i>
</body>
</html>
所以因为一切看起来都很好,所以我将 CSS 移到外部 sheet 并删除了 <style></style>
位:
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<link rel="stylesheet" type="text/css" href="css/fontello_mod.css"/>
</head>
<!-- <style></style> -->
<body>
<i class="icon"></i><i class="icon"></i>
</body>
</html>
但是现在,我的图标是这样的:
两者之间的CSS完全相同(复制粘贴)。为什么会这样?我该如何解决?
我不确定它是否相关,但我现在正在使用 Chrome 和 XAMPP(仅限 Apache)。
编辑:
这是我的文件夹结构:
html 文档名为 demo.html
,位于文件夹 A2
(http://localhost/573/A2/demo.html) 中。 CSS 风格sheet 是A2/css/fontello_mod.css
.
如果您将代码移至外部源,请检查字体文件的路径。
那么你必须像这样输入“../”:
url('../font/fontello.eot?47332372');
您的 css
文件未进入 font
文件夹。
将 "fontello" 字体文件夹放入 css
文件夹中。
将所有字体 url 更改为
@font-face {
font-family: 'fontello';
src: url('..//font/fontello.eot?47332372');
src: url('..//font/fontello.eot?47332372#iefix') format('embedded-opentype'),
url('..//font/fontello.woff?47332372') format('woff'),
url('..//font/fontello.ttf?47332372') format('truetype'),
url('..//font/fontello.svg?47332372#fontello') format('svg');
font-weight: normal;
font-style: normal;
}
我想看这个:
当我在 <style></style>
标签之间包含修改后的 fontello CSS 时它起作用:
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<!-- <link rel="stylesheet" type="text/css" href="css/fontello_mod.css"/> -->
</head>
<style>
@font-face {
font-family: 'fontello';
src: url('font/fontello.eot?47332372');
src: url('font/fontello.eot?47332372#iefix') format('embedded-opentype'),
url('font/fontello.woff?47332372') format('woff'),
url('font/fontello.ttf?47332372') format('truetype'),
url('font/fontello.svg?47332372#fontello') format('svg');
font-weight: normal;
font-style: normal;
}
.icon {
font-family: "fontello";
font-style: normal;
font-weight: normal;
speak: none;
display: inline-block;
text-decoration: inherit;
width: 1em;
margin-right: .2em;
text-align: center;
/* opacity: .8; */
/* For safety - reset parent styles, that can break glyph codes*/
font-variant: normal;
text-transform: none;
/* fix buttons height, for twitter bootstrap */
line-height: 1em;
/* Animation center compensation - margins should be symmetric */
/* remove if not needed */
margin-left: .2em;
/* You can be more comfortable with increased icons size */
font-size: 220%;
/* Font smoothing. That was taken from TWBS */
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
</style>
<body>
<i class="icon"></i><i class="icon"></i>
</body>
</html>
所以因为一切看起来都很好,所以我将 CSS 移到外部 sheet 并删除了 <style></style>
位:
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<link rel="stylesheet" type="text/css" href="css/fontello_mod.css"/>
</head>
<!-- <style></style> -->
<body>
<i class="icon"></i><i class="icon"></i>
</body>
</html>
但是现在,我的图标是这样的:
两者之间的CSS完全相同(复制粘贴)。为什么会这样?我该如何解决?
我不确定它是否相关,但我现在正在使用 Chrome 和 XAMPP(仅限 Apache)。
编辑:
这是我的文件夹结构:
html 文档名为 demo.html
,位于文件夹 A2
(http://localhost/573/A2/demo.html) 中。 CSS 风格sheet 是A2/css/fontello_mod.css
.
如果您将代码移至外部源,请检查字体文件的路径。
那么你必须像这样输入“../”:
url('../font/fontello.eot?47332372');
您的 css
文件未进入 font
文件夹。
将 "fontello" 字体文件夹放入 css
文件夹中。
将所有字体 url 更改为
@font-face {
font-family: 'fontello';
src: url('..//font/fontello.eot?47332372');
src: url('..//font/fontello.eot?47332372#iefix') format('embedded-opentype'),
url('..//font/fontello.woff?47332372') format('woff'),
url('..//font/fontello.ttf?47332372') format('truetype'),
url('..//font/fontello.svg?47332372#fontello') format('svg');
font-weight: normal;
font-style: normal;
}