# font-style

font-style CSS 属性允许你选择 font-family 字体下的 italic 或 oblique 样式。

# uni-app x 兼容性

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};

# font-style 的属性值

名称 兼容性 描述
italic
选择斜体,如果当前字体没有可用的斜体版本,会选用倾斜体(oblique )替代。
normal
选择 font-family 的常规字体。

# 默认值

normal

# 适用组件

# 示例

hello uni-app x

扫码体验(手机浏览器跳转到App直达页)

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>

# App平台差异

font-style 样式不支持继承

# 参见