tags:

views:

71

answers:

2

I'm using a div based layout and GWT which LOVES to use tables everywhere. The problem I'm encountering is that the tables can stretch beyond the height of the div they are contained in. Is there anyway to expand the div vertically if needed?

BTW content is being added to the table using javascript if that matters.

If you want to check out what I'm playing with go here. Just add a whold bunch of text to the input box and you will see.

+1  A: 

Get rid of height:100%; in .main-area. If you have to, use min-height.

Detect
Thanks. The only problem with min-height is IE... god I hate IE
KevMo
A: 

To get rid of tables, build layout with HTMLPanel widget and fill it with interactive elements (other widgets).

Alexander Vasiljev