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 ?
|
|
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:
CSS:
This guy had a similar problem: Table cell widths - fixing width, wrapping/truncating long words |
|||||||||||
|
|
Just add eg.
|
|||
|
|
|
'table-layout:fixed' you write this inside the corressponding CSS |
|||||||
|
|
What I do is: 1) Set the td width: 2) Set the td width with CSS: 3) Set the width again as max and min with CSS: 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:
then:
Place the class attribute to any you want. Best of regards!! Ebest! |
||||
|
|
|
If you need one ore more fixed-width columns while other columns should resize, try setting both |
|||
|
|
|
If you don't want a fixed layout, specify a class for the column to be size appropriately. CSS:
HTML:
|
|||
|
|
|
KAsun has the right idea. Here is the correct code...
|
|||
|
|
|
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:
|
|||
|
|
|
I used this .app_downloads_table tr td:first-child { width: 75%; } .app_downloads_table tr td:last-child { text-align: center; } |
|||
|
|