The content of table td in css exceeds... display, does not open td, does not wrap,... display style method

.conlistbox {
    
    
    position: relative;
    width: 100%;
    font-size: 14px;
    line-height: 40px;
    color: #333;
    table-layout: fixed;  // 这里是重点!!
}
    th,
    td {
    
    
      width: 100px;
      height: 40px;
      padding: 0 5px;
      box-sizing: border-box;
      border: 1px solid #eee;
      white-space: nowrap;
      text-overflow: ellipsis;
      overflow: hidden;
    }

Add styles to the table: table-layout: fixed;

Guess you like

Origin blog.csdn.net/ws19900201/article/details/108434332