I have a table of width 800 and one inner table within that of width 100%. The tr td looks like this
<tr><td align="right" valign= "top"><c:out value="HOUSE: " /></td><td nowrap align="left" valign= "top"> <c:out value='${houseBean.houseLabel}'/></td></tr>
Now when houseLabel goes beyond 5 values, the table grows beyond its width of 800. I tried using word-wrap to wrap around the values, but not working. Can anyone suggest a way of using wrap in JSTL/JSP. One more thing is the houseLabel values are in an arraylist.
Any help appreciated