In the table layout is often encountered because the table content changes caused by the layout confusion, this time we may have to stabilize the layout of the cell width to write dead, but we set the width but found beyond the width will automatically become larger, using CSS to define the elements of the Overflow:hidden; properties are not possible; the last solution to find is as follows:
table{table-layout:fixed;/* only the layout algorithm that defines the table is fixed, and the following TD definition will work. */}td{width:100%; llipsis;/* display ellipsis (...) when text inside an object overflows; use with Overflow:hidden; */} If you are concerned that you cannot see the full cell contents, it is suggested that the value of the title property on the cell is the full contents of the cell so that it can be displayed as long as the mouse is over.
Resolves content in an HTML table that is not forced to wrap and is out of width auto-hide and display ellipses