border-bottom.uvue 332 B

1234567891011121314151617181920
  1. <template>
  2. <view style="flex-grow: 1;">
  3. <view>
  4. <text>border-bottom: 5px dashed blue</text>
  5. <view class="common" style="border-bottom: 5px dashed blue;"></view>
  6. </view>
  7. </view>
  8. </template>
  9. <script>
  10. </script>
  11. <style>
  12. .common {
  13. width: 250px;
  14. height: 250px;
  15. background-color: gray;
  16. }
  17. </style>