上QQ阅读APP看本书,新人免费读10天
设备和账号都新为新人
font-style(字体风格)
font-style CSS 属性允许你选择 font-family 字体下的 italic 或 oblique 样式。
▼
听说房子是陈弦买的,大姐啧啧称赞,并询问:“你在哪儿工作?一个月赚多少钱呢?”讲到她在一家琴行当老师时,大姐的眼睛亮了:“那你教教我家姑娘呗?”sets whether a font should be styled with a normal, italic, or oblique face from its font-family.
▲
.oblique {
font-style: oblique;
}
上一段设置文字倾斜。
▼
sets whether a font should be styled with a normal, italic, or oblique face from its font-family.
▲
@font-face {
font-family: "HONORSans";
font-style: italic;
src: url(../Fonts/DingTalk-Sans.ttf);
}
.HONORSans {
font-family: "HONORSans";
}
.italic {
font-style: italic;
}
上一段设置文字使用嵌入字体 DingTalk 的意大利体。