<template> <view style="flex-grow: 1;"> <view> <text>flex-shrink</text> <view style="width: 500rpx;height: 300rpx;background-color: gray;flex-direction: row;"> <view class="common" style="background-color: red;flex-shrink: 1;"> <text>1</text> </view> <view class="common" style="background-color: green;flex-shrink: 2;"> <text>2</text> </view> <view class="common" style="background-color: blue;flex-shrink: 3;"> <text>3</text> </view> </view> </view> </view> </template> <script> </script> <style> .common { width: 250rpx; height: 100rpx; justify-content: center; align-items: center; } </style>