HTML question

spoma

Banned
Apr 23, 2001
336
0
0
I am trying to design a webpage and I was wondering if there is a way of writing text vertically on a sight. I am trying to do this without having to import an image of the text vertically. Any help would be appreciated.
 

GTaudiophile

Lifer
Oct 24, 2000
29,767
33
81
Maybe something like,

<font face="xxxx" color="#xxxx">T
H
E

C
A
T</font>

Edit: Damit, it actually implemented the HTML! Just use "br" after each letter.
 

spoma

Banned
Apr 23, 2001
336
0
0
Sorry I guess I didn't phrase my question right. I want it so that the text is actually rotated counter clockwise 90 degrees. so it is written sideways up the right hand side of the scree. Any help. thanks.
 

Czar

Lifer
Oct 9, 1999
28,510
0
0
You could use css for this, but I think that is css2 and not all browsers support that.

best to do it just as an image
 

jjones

Lifer
Oct 9, 2001
15,424
2
0
Amish, that's great. Too bad you can't do it to have have the text canted 90 degrees counter-clockwise. I can think of reasons to use that with a counter-clockwise text rotation but not really with the clockwise rotation.
 

spoma

Banned
Apr 23, 2001
336
0
0
Amish, that was great but I realy can't use it because it isn't supported until IE 5.5
To many people are still using 5.0
 

gopunk

Lifer
Jul 7, 2001
29,239
2
0
yea, what they said.

rule of thumb is this: anything you want to do, can not be done in html ;)
 

BigJohnKC

Platinum Member
Aug 15, 2001
2,448
1
0
So you want the text written in a vertical line with the first letter at the bottom and the last at the top, correct?

Try this:
<table width="100%">
<tr>
<td align="right">t</td>
</tr>
<tr>
<td align="right">x</td>
</tr>
<tr>
<td align="right">e</td>
</tr>
<tr>
<td align="right">t</td>
</tr>
</table>
 

spoma

Banned
Apr 23, 2001
336
0
0
that is going to display this

t
x
e
t

what i want is for the letters also to be sideways
 

BigJohnKC

Platinum Member
Aug 15, 2001
2,448
1
0
Oh, I misunderstood, sorry.... Maybe you can find a font where the letters are sideways. *shrug*
 

Electric Amish

Elite Member
Oct 11, 1999
23,578
1
0


<< Amish, that was great but I realy can't use it because it isn't supported until IE 5.5
To many people are still using 5.0
>>



Yeah, it's only IE too, no Netscape, Opera, etc...

amish