CSS table td width - fixed, not flexible

后端 未结 8 1701
温柔的废话
温柔的废话 2020-12-12 19:55

I have a table and I want to set a fixed width of 30px on the td\'s. the problem is that when the text in the td is too long, the td is stretched out wider than 30px.

8条回答
  •  [愿得一人]
    2020-12-12 20:16

    Put a div inside td and give following style width:50px;overflow: hidden; to the div
    Jsfiddle link

    
      
    A long string more than 50px wide

提交回复
热议问题