Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试使用在网站上放置一些特定字体
@font-face
除了颜色,一切似乎都很好。
有没有办法改变.otfCSS中字体的颜色?
.otf
您将使用选择器进行声明。
例如
p { font-family: 'AsapRegular'; color: #c50000; }
像往常一样简单地更改颜色就足够了:
p { color:red; }
确保它没有被覆盖,并且您的声明具有足够高的特异性。