我想使用Sigil将字体系列更改为嵌入式系列。我相信我已经在CSS中做了一切。我进口了" 1984" Sigil中的字体。
我已经阅读了本教程:http://www.pigsgourdsandwikis.com/2011/04/embedding-fonts-in-epub-ipad-iphone-and.html并且该示例适用于ADE 3.0,但是如果我打开它,不编辑文件并保存,它就不会显示嵌入的文件。
@font-face {
font-family: 1984, serif;
font-style: normal;
font-weight: normal;
src:url("../Fonts/1984.ttf");
}
.s8{
color: #000000;
font-family: "1984.ttf";
font-size: 125.5000%;
font-style: normal;
font-variant: normal;
font-weight: bold;
letter-spacing: 0.0000em;
margin-bottom: 0.0000%;
margin-top: 0.0000%;
padding-left: 0.0000%;
padding-right: 0.0000%;
text-align: left;
text-decoration: none;
text-indent: 0.0000%;
text-transform: none;
}
我该怎么办? 谢谢!
答案 0 :(得分:2)
font-family: "1984.ttf";
看起来应该只是font-family: 1984;
另请注意,CSS中的零值(即0.0000%;
)可以简单地替换为0