Dinidu Hewage
Dinidu Hewage

Reputation: 2191

what is the way to give fix width for table cells which works in IE

I need to give a fix width for a table cell. css things not works, hope a immediate answer

Upvotes: 0

Views: 45

Answers (2)

Dinidu Hewage
Dinidu Hewage

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

Mudassir Hasan
Mudassir Hasan

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

Related Questions