min-width.uvue 419 字节
Newer Older
DCloud-WZF's avatar
DCloud-WZF 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
<template>
  <view style="flex-grow: 1;">
    <view>
      <text>min-width: 250px</text>
      <view class="common" style="min-width: 250px;">
        <text>width: 50px</text>
      </view>
    </view>
  </view>
</template>

<script>

</script>

<style>
  .common {
    width: 50px;
    height: 250px;
    background-color: red;
    justify-content: center;
    align-items: center;
  }
</style>