Making a Bootstrap table column fit to content

前端 未结 7 2193
情话喂你
情话喂你 2021-01-30 02:40

I\'m using Bootstrap, and drawing a table. The rightmost column has a button in it, and I want it to drop down to the minimum size it needs to fit said button.

7条回答
  •  旧巷少年郎
    2021-01-30 03:33

    Make a class that will fit table cell width to content

    .table td.fit, 
    .table th.fit {
        white-space: nowrap;
        width: 1%;
    }
    

提交回复
热议问题