max-width.uvue 373 字节
Newer Older
DCloud-yinjiacheng's avatar
DCloud-yinjiacheng 已提交
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>max-width: 500rpx</text>
			<view class="common" style="max-width: 500rpx;">
				<text>width: 1000rpx</text>
			</view>
		</view>
	</view>
</template>

<script>

</script>

<style>
	.common {
		width: 1000rpx;
		height: 500rpx;
		background-color: red;
		justify-content: center;
		align-items: center;
	}
</style>