Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

In my table I set the width of the first cell in a column to be 100px. However, when the text in one of the cell in this column is loo long, the width of the column becomes more than 100px. How could I disable this expansion ?

share|improve this question
2  
stackoverflow.com/questions/1258416/word-wrap-in-a-html-table might help point you in the right direction – justinl Dec 16 '10 at 4:49

9 Answers

up vote 99 down vote accepted

I played with it for a bit because I had trouble figuring it out.

You need to set the cell width (either th or td worked, I set both) AND set the table-layout to fixed. For some reason, the cell width seems to only stay fixed if the table width is set, too (i think that's silly but whatev). Also useful is setting the overflow property to hidden.

You should make sure to leave all of the bordering and sizing for CSS, too.

Ok so here's what I have.

html:

<table>
   <tr>
      <th>header 1</th>
      <th>header 234567895678657</th>
   </tr>
   <tr>
      <td>data asdfasdfasdfasdfasdf</td>
      <td>data 2</td>
   </tr>
</table>

CSS:

table{
    border: 1px solid black;
    table-layout: fixed;
    width: 200px;
}

th, td {
    border: 1px solid black;
    overflow: hidden;
    width: 100px;
}

This guy had a similar problem: Table cell widths - fixing width, wrapping/truncating long words

share|improve this answer
Thanks a lot for working example! – Misha Moroshko Dec 16 '10 at 6:45
10  
Its important to notice this: "The browser will then set column widths based on the width of cells in the first row of the table", from stackoverflow.com/questions/570154/… – daniloquio Feb 9 '12 at 19:31
It does work when the table width is not fixed. jsfiddle.net/lavinski/CGCFW/3 You just need a dynamic row to take up the remaining space. – Lavinski Dec 13 '12 at 2:58
in your example you are closing your th's in the first row with td's – Michael Bylstra Dec 19 '12 at 3:15

Just add <div> tag inside <td> or <th> define width inside <div>. This will help you. Nothing else works.

eg.

<td><div style="width: 50px" >...............</div></td>
share|improve this answer

'table-layout:fixed'

you write this inside the corressponding CSS

share|improve this answer
1  
It doesn't work... – Misha Moroshko Dec 16 '10 at 5:22
better sorround table with div tags then inside div use overflow:auto – vinoth kumar Dec 16 '10 at 6:00

What I do is:

1) Set the td width: <td width="200" height="50"><!--blaBlaBla Contents here--></td>

2) Set the td width with CSS: <td style="width:200px; height:50px;">

3) Set the width again as max and min with CSS: <td style="max-width:200px; min-width:200px; max-height:50px; min-height:50px; width:200px; height:50px;"

It Sounds little bit repetitive but it gives me the desired result. To achieve this with much ease, you may need put the CSS Values in a class in your Style-sheet:

.td_size{

width:200px; 
height:50px;
max-width:200px;
min-width:200px; 
max-height:50px; 
min-height:50px;
**overflow:hidden;** /*(Optional)This might be useful for some overflow contents*/


}

then:

<td class="td_size">

Place the class attribute to any you want.

Best of regards!!

Ebest!

share|improve this answer

If you need one ore more fixed-width columns while other columns should resize, try setting both min-width and max-width to the same value.

share|improve this answer
I love this answer, pretty simple. – GusDeCooL Nov 22 '12 at 15:54

If you don't want a fixed layout, specify a class for the column to be size appropriately.

CSS:

.special_column { width: 120px; }

HTML:

<td class="special_column">...</td>
share|improve this answer

KAsun has the right idea. Here is the correct code...

<style type="text/css">
  th.first-col > div, 
  td.first-col > div {
    overflow:hidden;
    white-space:nowrap;
    width:100px
  }
</style>

<table>
  <thead><tr><th class="first-col"><div>really long header</div></th></tr></thead>
  <tbody><tr><td class="first-col"><div>really long text</div></td></tr></tbody>
</table>
share|improve this answer
Could you explain the answer to make it more clear ? – Cristiano Fontes Oct 10 '12 at 18:34

See: http://www.html5-tutorials.org/tables/changing-column-width/

After the table tag, use the col element. you don't need a closing tag.

For example, if you had three columns:

    <col style="width:40%">
    <col style="width:30%">
    <col style="width:30%">
share|improve this answer

I used this

.app_downloads_table tr td:first-child { width: 75%; }

.app_downloads_table tr td:last-child { text-align: center; }

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.