cwarn23 387 Occupation: Genius Team Colleague Featured Poster

Hi and I have been searching the web but my answer isn't looking very hopeful. I need javascript or preferably css to make my text vertical so the result is something like the following.

t
e
s
t
i
n
g

However with the result each of the characters need to be rotated 90 degrees with the bottom of the characters facing to the left. Does anybody know how this is possible with css or javascript? If worst comes to worst I guess I could use Java but css is my preference. Also below is a sample code I tried but didn't work.

<html><head><title>Test</title>
<style>
<!--
.verticaltext {
writing-mode: tb-rl;
filter: flipv fliph;
}
-->
</style>
</head><body>
<div class="verticaltext">Test-1</div>
</body></html>

Please respond...