CSS table column autowidth

前端 未结 4 1214
感情败类
感情败类 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:15

    use auto and min or max width like this:

    td {
    max-width:50px;
    width:auto;
    min-width:10px;
    }
    

提交回复
热议问题