bootstrap responsive table content wrapping

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

I have HTML similar to this:

    
10条回答
  •  臣服心动
    2020-12-24 11:39

    So you can use the following :

    td {
      white-space: normal !important; // To consider whitespace.
    }
    

    If this doesn't work:

    td {
      white-space: normal !important; 
      word-wrap: break-word;  
    }
    table {
      table-layout: fixed;
    }
    

提交回复
热议问题