13、省略号与换行

62 阅读1分钟
.tip {
      // border: 1px solid red;
      width: 100px;
      text-align: center;
      // overflow: hidden;
      // text-overflow: ellipsis;
      // white-space: nowrap;
      word-break: break-all;
    }
    
@media screen and (max-width: 1079px) {
  .two {
    width: 40px !important;
    /* height: 60px; */
    white-space: normal;
    /* border: 1px solid green; */
    word-break: break-all;
  }
  .new {
    /* line-height: 0; */
    height: 37px;
  }
  .newTip {
    line-height: 18px;
  }
}

 <div v-for="(item,index) in tableData" :key="index" class="table-body" v-show='tableData.length !== 0' :class="index == 0 ?'active':''">
  // .active {
  //   background-color: rgb(37, 165, 216);
  //   color: #fff;
  // }