简体中文
font-style CSS 属性允许你选择 font-family 字体下的 italic 或 oblique 样式。
Web | Android | iOS |
---|---|---|
4.0 | 3.9 | 4.11 |
Chrome | Edge | Firefox | Opera | Safari | IE |
---|---|---|---|---|---|
√( 1 ) | √( 12 ) | √( 1 ) | √( 7 ) | √( 1 ) | √( 4 ) |
font-style: normal | italic | oblique <angle>{0,2};
名称 | 兼容性 | 描述 |
---|---|---|
italic | 选择斜体,如果当前字体没有可用的斜体版本,会选用倾斜体(oblique )替代。 | |
normal | 选择 font-family 的常规字体。 |
normal
Template
Script
<template>
<view style="flex-grow: 1;">
<view style="height: 250px;background-color: gray;justify-content: center;align-items: center;">
<text class="common" style="font-style: italic;">font-style: italic</text>
<text class="common" style="font-style: normal;">font-style: normal</text>
</view>
</view>
</template>
<style>
.common {
font-size: 20px;
}
</style>
font-style 样式不支持继承