gpt4 book ai didi

css - 为什么字体样式在外部样式表中不起作用?

转载 作者:行者123 更新时间:2023-11-28 09:39:23 28 4
gpt4 key购买 nike

我正在定义并使用我的自定义字体。在内部样式表中这工作正常,但当我在外部样式表中使用它时它不起作用。
这是我的代码:

@font-face
{
font-family: A1Tahoma;
src: url('Fonts/a1tahoma.eot') format('eot')
, url('Fonts/a1tahoma.ttf') format('truetype')
, url('Fonts/a1tahoma.woff') format('woff')
, url('Fonts/a1tahoma.svg') format('svg');


/* font-weight: normal;
font-style: normal;*/
}
body,.test1
{

font-family:A1Tahoma; font-weight: bold;font-style: normal;

}
<div class="test1">این خط را باید با نوع فونت تاهما ببینید<br />همچنین عدد 125420 به صورت فارسی تایپ شده است.</div>

你能帮帮我吗? enter image description here

最佳答案

我怀疑这与样式表中的相对 URL 有关。外部样式表是否与您的 html 页面位于同一位置? url('Fonts/...') 中的路径必须从 CSS 的位置开始工作。例如,如果您具有以下结构:

index.html
Fonts/a1tahoma.eot
css/styles.css

然后您需要将 URL 更改为 src: url('../Fonts/a1tahoma.eot')

关于css - 为什么字体样式在外部样式表中不起作用?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12881952/

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