我想在一个 href 上使用两个不同的字体系列创建一个带有 CSS 的徽标
例如
<style>
a#logo{
"LogoWith" - font-family:sans;
"TwoFontFamilies" - font-family:Ariel;
}
</style>
<a id="logo" href="#">LogoWithTwoFontFamilies</a>
我知道我写的 CSS 是错误的。我似乎无法找到在单个字符串上应用两种不同字体系列的解决方案。