max-width.uvue 398 B

123456789101112131415161718192021222324
  1. <template>
  2. <view style="flex-grow: 1;">
  3. <view>
  4. <text>max-width: 250px</text>
  5. <view class="common" style="max-width: 250px;">
  6. <text>width: 500px</text>
  7. </view>
  8. </view>
  9. </view>
  10. </template>
  11. <script>
  12. </script>
  13. <style>
  14. .common {
  15. width: 500px;
  16. height: 250px;
  17. background-color: red;
  18. justify-content: center;
  19. align-items: center;
  20. }
  21. </style>