rich-text 中不支持 font-family?
发布于 5 年前 作者 juan11 13302 次浏览 来自 问答
const t4 = `
  <div style="font-size: 22px; font-family: 'SimSun' font-style: 'italic'">我是一段文字 - 宋体</div>
  <div style="font-size: 22px; font-family: SimHei">我是一段文字 - 黑体</div>
  <div style="font-size: 22px; font-family: SimSun">我是一段文字 - 仿宋</div>
  <div style="font-size: 22px; font-family: Tahoma">我是一段文字 - Tahoma</div>
  <div style="font-size: 22px; font-family: '微软雅黑'">我是一段文字 - 微软雅黑</div>
`

Page({
  data: {
    t4
  }
})

<rich-text nodes="{{t4}}"></rich-text>

wps 中对比

回到顶部