font-weight.uvue 546 字节
Newer Older
DCloud-yinjiacheng's avatar
DCloud-yinjiacheng 已提交
1 2
<template>
	<view style="flex-grow: 1;">
DCloud-yinjiacheng's avatar
DCloud-yinjiacheng 已提交
3
		<view style="height: 250px;background-color: gray;justify-content: center;align-items: center;">
DCloud-yinjiacheng's avatar
DCloud-yinjiacheng 已提交
4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
			<text class="common" style="font-weight: normal;">font-weight: normal</text>
			<text class="common" style="font-weight: bold;">font-weight: bold</text>
			<text class="common" style="font-weight: 400;">font-weight: 400</text>
			<text class="common" style="font-weight: 700;">font-weight: 700</text>
		</view>
	</view>
</template>

<script>

</script>

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