Adjusting table cell width

后端 未结 5 1246
臣服心动
臣服心动 2020-12-17 18:05

Let\'s take 4 table columns - ID, Text, Date, Action. In my case table have always constant width - in example 960px.

5条回答
  •  攒了一身酷
    2020-12-17 18:55

    Using a 100% width on the wide td and a fixed width for the table along with white-space:nowrap, this can be done:

    Demo

    HTML

    1 Some text... May 2011 Edit
    2 Another text... April 2011 Edit

    CSS

    table
    {
        ...
        width:960px;
    }
    
    td
    {
        ...
        white-space:nowrap;
    }
    

提交回复
热议问题