text-decoration-line.uvue 799 B

1234567891011121314151617181920212223242526272829
  1. <template>
  2. <view style="flex-grow: 1;">
  3. <view class="content">
  4. <text class="common" style="text-decoration-line: underline;">text-decoration-line: underline</text>
  5. <text class="common" style="text-decoration-line: line-through;">text-decoration-line: line-through</text>
  6. </view>
  7. <view class="content">
  8. <text class="common" style="text-decoration-line: underline;color: blue;">text-decoration-line: underline</text>
  9. <text class="common" style="text-decoration-line: line-through;color: blue;">text-decoration-line: line-through</text>
  10. </view>
  11. </view>
  12. </template>
  13. <script>
  14. </script>
  15. <style>
  16. .common {
  17. font-size: 20px;
  18. }
  19. .content {
  20. height: 250px;
  21. background-color: gray;
  22. justify-content: center;
  23. align-items: center;
  24. margin-bottom: 16px;
  25. }
  26. </style>