Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

A lot of people still use tables to layout controls, data etc. - one example of this is the popular jqGrid. However, there is some magic happening that I cant seem to fathom (its tables for crying out loud, how much magic could there possibly be?)

How is it possible to set a table's column width and have it obeyed like jqGrid does!? If I try to replicate this, even if I set every <td style='width: 20px'>, as soon as the content of one of those cells is greater than 20px, the cell expands!

Any ideas or insights?

share|improve this question

3 Answers

up vote 48 down vote accepted

You could try using the col tag to do table styling in one place for all rows but you will need to set the table-layout:fixed style on the table or the tables css class and set the overflow style for the cells

http://www.w3schools.com/TAGS/tag_col.asp

<table class="fixed">
    <col width="20px" />
    <col width="30px" />
    <col width="40px" />
    <tr>
        <td>text</td>
        <td>text</td>
        <td>text</td>
    </tr>
</table>

and this be your CSS

table.fixed { table-layout:fixed; }
table.fixed td { overflow: hidden; }
share|improve this answer
Awesome - this is a great solution, thank you :) – Jimbo Nov 18 '10 at 6:53
+1 for table-layout:fixed, brilliant – smirkingman Jun 4 '12 at 15:46
3  
you should use word-break: jsbin.com/ivapoh/2/edit – vsync Jan 29 at 17:26
col wouldn't work in html5, set width of individual td instead by inline css or css classes – Pankaj Phartiyal 2 days ago
table td 
{
  table-layout:fixed;
  width:20px;
  overflow:hidden;
  word-wrap:break-word;
}
share|improve this answer
table { 
    table-layout:fixed; width:200px;
}
table tr {
    height: 20px;
}

10x10

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.