CSS table column autowidth

前端 未结 4 1224
感情败类
感情败类 2020-12-02 07:45

Given the following how do i make my last column auto size to its content? (The last column should autosize-width to the content. Suppose i have only 1 li element it should

4条回答
  •  情话喂你
    2020-12-02 08:23

    If you want to make sure that last row does not wrap and thus size the way you want it, have a look at

    td {
     white-space: nowrap;
    }
    

提交回复
热议问题