<template> <view style="flex-grow: 1;"> <view>
<text>width: 250px</text> <view class="common" style="width: 250px;"></view>
</view>
<view style="width: 250px;">
<text>width: 50%</text> <view class="common" style="width: 50%;"></view> </view> </view> </template> <script> </script> <style> .common {
height: 250px;
background-color: red; } </style>