Click to See Complete Forum and Search --> : Vertical text


arturion
08-13-2003, 09:18 PM
Is it possible to write vertical text in HTML?

Khalid Ali
08-13-2003, 10:28 PM
I don't think so,
however if you create div with very littel width and lots a height you can mimic that effect.

Paul Jr
08-13-2003, 11:30 PM
Yes, I agree. I have looked around, and I see no way to do it any other way.

Fang
08-14-2003, 02:48 AM
It is possible. For a IE only method check this (http://msdn.microsoft.com/library/default.asp?url=/workshop/author/dhtml/reference/properties/writingmode.asp), or for a general solution you could design your own font and have the user upload it thus:

<style type="text/css">
<!--
@font-face {
font-family: "MyFont";
src: url("http://www.mysite.com/MyFont");
}
body {font-family:"MyFont";}
-->
</style>

Gollum
08-14-2003, 03:25 AM
I believe with downloadable fonts, each browser supports a different format.


Standards are great! Everyone should have one.