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 Chris Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Change column heading alignment/orientation in Coldfusion

Status
Not open for further replies.

JtheRipper

IS-IT--Management
Oct 4, 2002
274
GB
Hi there,

Don't know if this is possible, but here goes:

I am creating a table in coldfusion that looks something like this:

SERVER D1 D2 D3
apps1 01/03 28/02 27/02
em1 01/03 28/02 27/02
.
.
.

I would like to display the headings vertically. Don't know if it makes sense, but something like in Excel where you can change the fields' orientation. So not only like this:
S
E
R
V
E
R
, but the letters must be rotated as well.

Any assistance will be greatly appreciated.

Thanks,
J.


 
anything that has to do with the way data "LOOKS" in a browser is html/css forum215

If you don't ask the right questions, you don't get the right answers. A question asked in the right way often points to its own answer. Asking questions is the ABC of diagnosis. Only the inquiring mind solves problems.

-Quote by Edward Hodnett
 
I'm assuming you still want column headings and not row labels.

This would work:

<tr>
<td>
S<br>E<br>R<br>V<br>E<br>R
</td>
<td>
D<br>1
</td>
<td>
D<br>2
</td>
...
</tr>

Lyndon
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top