line-height.uvue 743 字节
Newer Older
DCloud-yinjiacheng's avatar
DCloud-yinjiacheng 已提交
1
<template>
DCloud-yinjiacheng's avatar
DCloud-yinjiacheng 已提交
2 3 4 5 6 7 8 9 10 11 12
  <view style="flex-grow: 1;">
    <view style="height: 1000rpx;background-color: gray;justify-content: center;align-items: center;">
      <text class="common">CSS测试 CSS测试 CSS测试</text>
      <text class="common" style="line-height: 150rpx;">line-height: 150rpx</text>
      <text class="common">CSS测试 CSS测试 CSS测试</text>
      <text class="common" style="line-height: 3;">line-height: 3</text>
      <text class="common">CSS测试 CSS测试 CSS测试</text>
      <text class="common" style="line-height: 3em;">line-height: 3em</text>
      <text class="common">CSS测试 CSS测试 CSS测试</text>
    </view>
  </view>
DCloud-yinjiacheng's avatar
DCloud-yinjiacheng 已提交
13 14 15 16 17 18 19
</template>

<script>

</script>

<style>
DCloud-yinjiacheng's avatar
DCloud-yinjiacheng 已提交
20 21 22
  .common {
    font-size: 20px;
  }
DCloud-yinjiacheng's avatar
DCloud-yinjiacheng 已提交
23
</style>