gitakachan / bootstrap-issues

0 stars 0 forks source link

table content 寬度為內容寬度 (Making a Bootstrap table column fit to content) #8

Open gitakachan opened 2 years ago

gitakachan commented 2 years ago

參考:https://stackoverflow.com/questions/31184000/making-a-bootstrap-table-column-fit-to-content

table.table-fit {
  width: auto !important;
  table-layout: auto !important;

  thead th,
  tfoot th {
    width: auto !important;
  }
  tbody td {
    width: auto !important;
    &.no-border {
      border-bottom: none;
    }
  }
}