css 文字超出部分显示省略号

设置table固定布局,否则自适应布局会不受控制

table{

  table-layout: fixed;

}

单行文字 :

overflow: hidden;
text-overflow:ellipsis;
white-space: nowrap;

 

你可能感兴趣的:(css模块)