View Full Version : A way to make text vertical?


Neurologist
08-28-2005, 01:55 AM
I'm looking for a possible code where you can make text 'lie on it's side' so to speak. I want text to go down along a picture, but having it vertical. I don't even know if such a code exists, or if it's something in CSS. Help?

hdshngout
08-28-2005, 02:56 AM
add this to your head

<style>
<!--
.verticaltext {
writing-mode: tb-rl;
filter: flipv fliph;
}
-->
</style>

Then put this in your body statement

<div class="verticaltext">YOUR TEXT HERE</div>

if you need to increase the text and stuff modify the part in the header, ex width: #; or height #; font-color: #000000; etc.


hope it helps :)