#鸿蒙学习大百科#Text的文本字符间距是否可以是负值?

Text的文本字符间距是否可以是负值?

HarmonyOS
2024-10-25 11:08:59
浏览
收藏 0
回答 1
待解决
回答 1
按赞同
/
按时间
朝花惜拾丶

可以。

Text('This is the text content with letterSpacing 0.')
  .letterSpacing(0)
  .fontSize(12)
  .border({ width: 1 })
  .padding(10)
  .width('100%')
  .margin(5)
Text('This is the text content with letterSpacing 3.')
  .letterSpacing(3)
  .fontSize(12)
  .border({ width: 1 })
  .padding(10)
  .width('100%')
  .margin(5)
Text('This is the text content with letterSpacing -1.')
  .letterSpacing(-1)
  .fontSize(12)
  .border({ width: 1 })
  .padding(10)
  .width('100%')
  .margin(5)

分享
微博
QQ
微信
回复
2024-10-25 15:46:08
相关问题
#鸿蒙学习大百科#什么是AppStorage?
116浏览 • 1回复 待解决
#鸿蒙学习大百科#什么是LocalStorage?
132浏览 • 1回复 待解决
#鸿蒙学习大百科#什么是HiTraceMeter?
160浏览 • 1回复 待解决