font-weight.uvue 546 B

1234567891011121314151617181920
  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="font-weight: normal;">font-weight: normal</text>
  5. <text class="common" style="font-weight: bold;">font-weight: bold</text>
  6. <text class="common" style="font-weight: 400;">font-weight: 400</text>
  7. <text class="common" style="font-weight: 700;">font-weight: 700</text>
  8. </view>
  9. </view>
  10. </template>
  11. <script>
  12. </script>
  13. <style>
  14. .common {
  15. font-size: 20px;
  16. }
  17. </style>