How do I get the rightmost column to fill the remaining space?

前端 未结 2 1912
野性不改
野性不改 2021-02-03 17:03

Say I have a table with only three small columns. It looks untidy and unbalanced to have a narrow, tall table hugging the left side of my screen (example), so I\'d like the tabl

2条回答
  •  时光取名叫无心
    2021-02-03 17:40

    If this is what you meant : image then I can achieve that using standard html table structure with the following css :

    table {
      width:auto;
    }
    td {
      white-space:nowrap;
    }
    td:last-child {
      width:100%;
    }
    

    --EDIT : work with your jsfiddle

提交回复
热议问题