对于以下结构:
/wp-content/
/themes/
/mytheme/
style.css
/images/
img.png
/font/
font.tff
参考文献
img.png
和
font.tff
像这样:
.div {
background-image: url(\'images/img.png\');
}
@font-face {
src: url(\'fonts/font.ttf\');
}
当css文件位于目录中时:
/wp-content/
/themes/
/mytheme/
/css/
some.css
/images/
img.png
/font/
font.tff
在某些方面。css您可以这样引用它们:
.div {
background-image: url(\'../images/img.png\');
}