I have a table with 2 columns. Each <td> element contains a <div> element. How can I set height of <div> elements to fill owner <td> element?
I need to get it to work in IE too.
Check the jsfiddle here.
| show 4 more comments |
|
How about this:
|
|||||
|
|
Just a thought, why not try to style the td instead of a div within a td? That's what I did here... |
|||
|
|
|
I'm assuming you don't want to do this with every
To be more generic, you can also use classes and a combination of SnowBlind's answer, as follows..
UPDATE: You need to have a custom event when you update the cell (via ajax or however) and repeat the above. But only for that cell.
and..
|
|||||||||||
|
div{ height:100% }work? – Snow Blind Jul 30 '12 at 18:16height:100%doesn't do anything unfortunately. – Bill Jul 30 '12 at 18:16height:100%doesn't do anything... – Bill Jul 30 '12 at 18:18