bootstrap responsive table content wrapping

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

I have HTML similar to this:

    
10条回答
  •  心在旅途
    2020-12-24 11:52

    Fine then. You can use CSS word wrap property. Something like this :

    td.test /* Give whatever class name you want */
    {
    width:11em; /* Give whatever width you want */
    word-wrap:break-word;
    }
    

提交回复
热议问题