letter-spacing.uvue 450 B

12345678910111213141516171819
  1. <template>
  2. <view style="flex-grow: 1;">
  3. <view style="height: 250px;background-color: gray;justify-content: center;align-items: center;">
  4. <text class="common">letter-spacing</text>
  5. <text class="common" style="letter-spacing: 5px;">letter-spacing: 5px</text>
  6. <text class="common" style="letter-spacing: -2px;">letter-spacing: -2px</text>
  7. </view>
  8. </view>
  9. </template>
  10. <script>
  11. </script>
  12. <style>
  13. .common {
  14. font-size: 20px;
  15. }
  16. </style>