I just inherited a project to clean up some web pages. They are really simple, just a read only Web browser interface to some static reports stored on our VM system.
The logical way to display these files is in tables. I have everything working fine except for the column headers. How can I get the text in those cells to split into multiple lines? For example I see:
Customer Number
--------------------
111111
--------------------
222222
and I want
Customer
Number
----------
111111
----------
222222
Thanks
Never mind. The CSS has a table tag specifying "width 100%". Withe teh window maximized, the text all fit on one line. As soon as resized the browser window the text split.