text-align.uvue 627 B

1234567891011121314151617181920212223242526
  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" style="text-align: left;">text-align: left</text>
  5. <text class="common" style="text-align: center;">text-align: center</text>
  6. <text class="common2" style="text-align: center;">text-align: center</text>
  7. <text class="common" style="text-align: right;">text-align: right</text>
  8. </view>
  9. </view>
  10. </template>
  11. <script>
  12. </script>
  13. <style>
  14. .common {
  15. width: 250px;
  16. font-size: 20px;
  17. }
  18. .common2 {
  19. min-width: 250px;
  20. font-size: 20px;
  21. }
  22. </style>