color.uvue 619 字节
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
<template>
	<view style="flex-grow: 1;">
		<view style="height: 500rpx;background-color: gray;justify-content: center;align-items: center;">
			<text class="common" style="color: rgb(255, 0, 0);">color: rgb(255, 0, 0)</text>
			<text class="common" style="color: rgba(255, 0, 0, 0.5);">color: rgba(255, 0, 0, 0.5)</text>
			<text class="common" style="color: #ff0000;">color: #ff0000</text>
			<text class="common" style="color: #f00;">color: #f00</text>
			<text class="common" style="color: red;">color: red</text>
		</view>
	</view>
</template>

<script>

</script>

<style>
	.common {
		font-size: 20px;
	}
</style>