美文网首页
04_weex之text(溢出隐藏)

04_weex之text(溢出隐藏)

作者: pzmpzm | 来源:发表于2018-08-23 16:12 被阅读0次

1、text组件提供一个lines的样式,直接把这个样式写在css里就可以生效了,并且带了省略号。这里的坑就是不要写在标签的属性上,而是要写在样式里。

<template>
  <div class="topheader">
      <text class="top_text"> 哇哇哇哇哇哇哇哇的顶顶顶顶顶顶顶顶顶顶顶顶顶顶顶大大大</text>
  </div>
</template>
 
<script>
export default {
  
}
</script>
 
 
<style scoped>
    .topheader{
        background-color:red;
        padding:10px;
    }
    .top_text{
        color:#fff;
        text-align: center;
        font-size:50px;
        lines:1;      //溢出隐藏
    }
</style>

相关文章

网友评论

      本文标题:04_weex之text(溢出隐藏)

      本文链接:https://www.haomeiwen.com/subject/cydpiftx.html