tags:

views:

19

answers:

1

hello i have a table with <th> i want to do a carriage return when my titlle is long

A: 

Either insert a <br /> tag at the place you want the text to wrap or use the CSS style white-space:normal to allow the browser to split the text at a place it thinks best. Since this rarely works well, you should also give the column a specific width so the break appears in a nice place.

Aaron Digulla
not work for me i use jquery modal popup in my html/jsp
Mercer
a) You should mention that in your question. b) What exactly isn't working?
Aaron Digulla