font-style.uvue 415 B

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