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

<script>

</script>

<style>
	.common {
DCloud-yinjiacheng's avatar
DCloud-yinjiacheng 已提交
18 19
		width: 50px;
		height: 250px;
DCloud-yinjiacheng's avatar
DCloud-yinjiacheng 已提交
20 21 22 23 24
		background-color: red;
		justify-content: center;
		align-items: center;
	}
</style>