text-overflow.uvue 1.2 KB
Newer Older
DCloud-yinjiacheng's avatar
DCloud-yinjiacheng 已提交
1
<template>
DCloud-yinjiacheng's avatar
DCloud-yinjiacheng 已提交
2
  <view style="flex-grow: 1;">
DCloud-yinjiacheng's avatar
DCloud-yinjiacheng 已提交
3 4 5 6 7 8 9 10 11 12 13 14 15
    <view style="height: 250px;padding: 0 30px; background-color: gray;justify-content: center;">
      <view class="margin-bottom-10">
        <text class="font-weight-bold">text-overflow:clip white-space:nowrap</text>
        <text class="font-size-20" style="text-overflow: clip;white-space: nowrap;">{{text}}</text>
      </view>
      <view class="margin-bottom-10">
        <text class="font-weight-bold">text-overflow:ellipsis white-space:nowrap</text>
        <text class="font-size-20" style="text-overflow: ellipsis;white-space: nowrap;">{{text}}</text>
      </view>
      <view class="margin-bottom-10">
        <text class="font-weight-bold">white-space:normal</text>
        <text class="font-size-20" style="white-space: normal;">{{text}}</text>
      </view>
DCloud-yinjiacheng's avatar
DCloud-yinjiacheng 已提交
16 17
    </view>
  </view>
DCloud-yinjiacheng's avatar
DCloud-yinjiacheng 已提交
18 19 20
</template>

<script>
DCloud-yinjiacheng's avatar
DCloud-yinjiacheng 已提交
21 22 23 24 25 26 27
  export default {
    data() {
      return {
        text: 'HBuilderX,轻巧、极速,极客编辑器;uni-app x,终极跨平台方案;uts,大一统语言'
      }
    }
  }
DCloud-yinjiacheng's avatar
DCloud-yinjiacheng 已提交
28 29 30
</script>

<style>
DCloud-yinjiacheng's avatar
DCloud-yinjiacheng 已提交
31
  .font-size-20 {
DCloud-yinjiacheng's avatar
DCloud-yinjiacheng 已提交
32 33
    font-size: 20px;
  }
DCloud-yinjiacheng's avatar
DCloud-yinjiacheng 已提交
34 35 36 37 38 39 40 41

  .font-weight-bold {
    font-weight: bold;
  }

  .margin-bottom-10 {
    margin-bottom: 10px;
  }
DCloud-yinjiacheng's avatar
DCloud-yinjiacheng 已提交
42
</style>