cg9com
12-08-2002, 04:13 AM
was wondering about vertical text
as in vertical sideways that could go "up" or "down" a page?
heh dir doesnt support top to bottom
Do you mean something like this.
<span style="writing-Mode:tb-rl;font-size:15;height:300">Do you mean something like this</span>
bacterozoid
12-08-2002, 02:34 PM
Edit: Well, Mr J's does the same thing, just backwards and simpler it seems.
Well, I'm not too sure about compatibility, but here ya go:
<style>
.Vtext { writing-mode:tb-rl;
filter:flipV() flipH();
}
</style>
</head>
<body>
<p class="Vtext">
verticaltext
</p>
Is that what you were looking to do?
cg9com
12-09-2002, 08:03 AM
oh ok, yes thats was what i was wondering.
thanks :)