Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

making the table headings vertical

Status
Not open for further replies.

javaarray

Programmer
Feb 10, 2001
17
0
0
US
I am trying to make my table headings vertical, like in a excel document. I am then going to populate the table from a database. This will be done via a jsp.

Thanks in advance,
 
Well, the problem is I don't know how to make the headings vertical.
 
Just nest your <th> tags inside your <tr> tags.

<tr>
<th>Heading 1</th>
<td width=&quot;33%&quot;> </td>
</tr>
<tr>
<th>Heading 2</th>
<td width=&quot;33%&quot;> </td>
</tr>


Tim
develop@embanet.com
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top