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


kariba
03-13-2003, 06:08 PM
Hello,

I wonder how to set vertical font. Is it possible or do I need to purchase special font for that?

Thanks for any help,

Mike

Jona
03-17-2003, 12:58 PM
I believe it's possible. Microsoft's Web site has an .hta text editor made with JavaScript that has a vertical-font functionality to it. But it probably won't work in NS4.x or other older browsers.

pyro
03-17-2003, 09:51 PM
Try this code out. It is IE only...

<html>
<head>
<style type="text/css">
#mytext
{
font-family: verdana;
height: 120px;
writing-mode: tb-rl; filter: fliph() flipV();
}
</style>
</head>
<body>
<span id="mytext">This is a test</div>
</body>
</html>