max-height.uvue 369 字节
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>max-height: 250px</text>
			<view class="common" style="max-height: 250px;">
				<text>height: 500px</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: 250px;
		height: 500px;
DCloud-yinjiacheng's avatar
DCloud-yinjiacheng 已提交
20 21 22 23 24
		background-color: red;
		justify-content: center;
		align-items: center;
	}
</style>