line-height.uvue 688 B

1234567891011121314151617181920212223242526
  1. <template>
  2. <view style="flex-grow: 1;">
  3. <view style="height: 500px;background-color: gray;justify-content: center;align-items: center;">
  4. <text class="common" style="line-height: 75px;">line-height: 75px</text>
  5. <text class="common line-height-3">line-height: 3</text>
  6. <text class="common" style="line-height: 3em;">line-height: 3em</text>
  7. <text class="common" style="line-height: 3;">line-height: 3\nline-height: 3\nline-height: 3</text>
  8. </view>
  9. </view>
  10. </template>
  11. <script>
  12. </script>
  13. <style>
  14. .common {
  15. font-size: 20px;
  16. border: 1px red solid;
  17. margin: 10px 0;
  18. padding: 0 10px;
  19. }
  20. .line-height-3 {
  21. line-height: 3;
  22. }
  23. </style>