border-width.uvue 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. <template>
  2. <!-- #ifdef APP -->
  3. <scroll-view style="flex: 1">
  4. <!-- #endif -->
  5. <view style="flex-grow: 1">
  6. <view>
  7. <text>border-width: 5px (without border-style)</text>
  8. <view class="common" style="border-width: 5px;"></view>
  9. </view>
  10. <view>
  11. <text>border-width: 5px</text>
  12. <view class="common" style="border-width: 5px; border-style: solid;"></view>
  13. </view>
  14. <view>
  15. <text>border-left-width: 5px</text>
  16. <view class="common" style="border-left-width: 5px; border-left-style: solid; "></view>
  17. </view>
  18. <view>
  19. <text>border-top-width: 10px</text>
  20. <view class="common" style="border-top-width: 10px; border-top-style: solid; "></view>
  21. </view>
  22. <view>
  23. <text>border-right-width: 15px</text>
  24. <view class="common" style="border-right-width: 15px; border-right-style: solid; "></view>
  25. </view>
  26. <view>
  27. <text>border-bottom-width: 20px</text>
  28. <view class="common" style="border-bottom-width: 20px; border-bottom-style: solid; "></view>
  29. </view>
  30. </view>
  31. <!-- #ifdef APP -->
  32. </scroll-view>
  33. <!-- #endif -->
  34. </template>
  35. <style>
  36. .common {
  37. width: 250px;
  38. height: 250px;
  39. background-color: gray;
  40. }
  41. </style>