bootstrap responsive table content wrapping

前端 未结 10 1727
南旧
南旧 2020-12-24 11:10

I have HTML similar to this:

    
10条回答
  •  醉梦人生
    2020-12-24 11:45

    .table td.abbreviation {
      max-width: 30px;
    }
    .table td.abbreviation p {
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    
    }

    ABC DEF

提交回复
热议问题