Reputation: 2191
I need to give a fix width for a table cell. css things not works, hope a immediate answer
Upvotes: 0
Views: 45
Reputation: 2191
Yes I found a way to over come this, you can use "nowrap" tag for that
syntax:- <td nowrap="nowrap"> </td>
Upvotes: 0
Reputation: 28771
Specify a direct width for the table, as well as set the table-layout to fixed:
table#myTable{
table-layout: fixed;
width: 726px;
}
Upvotes: 1