9433cfb9创建于 2025年12月31日历史提交
<template>
	<view style="flex-grow: 1;">
		<view class="content">
			<text class="common" style="text-decoration-line: underline;">text-decoration-line: underline</text>
			<text class="common" style="text-decoration-line: line-through;">text-decoration-line: line-through</text>
		</view>
		<view class="content">
			<text class="common" style="text-decoration-line: underline;color: blue;">text-decoration-line: underline</text>
			<text class="common" style="text-decoration-line: line-through;color: blue;">text-decoration-line: line-through</text>
		</view>
	</view>
</template>

<script>

</script>

<style>
	.common {
		font-size: 20px;
	}
  .content {
    height: 250px;
    background-color: gray;
    justify-content: center;
    align-items: center;
    margin-bottom: 16px;
  }
</style>