margin-top.uvue 804 字节
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 25 26 27 28 29 30 31 32
<template>
	<view style="flex-grow: 1;">
		<view>
			<text>margin-top: 50rpx</text>
			<view style="width: 500rpx;height: 500rpx;background-color: gray;">
				<view class="common" style="background-color: red;"></view>
				<view class="common" style="margin-top: 50rpx;"></view>
				<view class="common" style="background-color: blue;"></view>
			</view>
		</view>

		<view>
			<text>margin-top: 10%</text>
			<view style="width: 500rpx;height: 500rpx;background-color: gray;">
				<view class="common" style="background-color: red;"></view>
				<view class="common" style="margin-top: 10%;"></view>
				<view class="common" style="background-color: blue;"></view>
			</view>
		</view>
	</view>
</template>

<script>

</script>

<style>
	.common {
		height: 100rpx;
		background-color: green;
	}
</style>