JavaScript font-face中src url支持相对路径吗?
是的,JavaScript font-face中的src属性支持相对路径。可以使用相对路径来引用字体文件,例如:
@font-face {
font-family: 'MyFont';
src: url('../fonts/myfont.ttf') format('truetype');
}
原文地址: https://www.cveoy.top/t/topic/iopr 著作权归作者所有。请勿转载和采集!