CSS Table with one column taking remaining space

前端 未结 6 962
北荒
北荒 2020-12-16 13:04

I have tried now several things (and looked around here) and nothing worked so far. So I am going to ask.

What I want:

I have the following

6条回答
  •  慢半拍i
    慢半拍i (楼主)
    2020-12-16 13:35

    min-width in combination with width:100% seems to work in firefox and chrome:

      tr {
        td:first-of-type {
          width: 100%;
        }
        td:last-of-type {
          min-width: 200px;
        }
      }
    

提交回复
热议问题