Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Rhinorhino on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Rotate text orientation in browser

Status
Not open for further replies.

twospoons

IS-IT--Management
Joined
Jan 7, 2003
Messages
103
Location
US
hello all,

i'm not even sure if this idea is possible but here goes...

i am looking for a way to display text in different directions on the same webpage. example:

text>>>

^
^
^
t
x
e
t

like i said it may not be possible but if so could someone point me down the right path. thanks in advance.
 
in IE, you can do this:

<!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.01 Transitional//EN&quot;>
<html>
<head>
<title>flipped</title>
<style type=&quot;text/css&quot;>

#flipped_out {
position: absolute;
background: threedface;
padding:5px;
font:menu;
white-space:nowrap;
top: 100px;
left: 100px;
writing-mode: tb-rl;
filter: flipH() flipV();
}
</style>
</head>

<body>
<form>
<div id=&quot;flipped_out&quot;>text>>></div>
</form>
</body>
</html>


i'm not sure if NS/Mozilla can do it.



=========================================================
try { succeed(); } catch(E) { tryAgain(); }
-jeff
 
you could also use a script to place each character in the position you want using String.charAt(index).

Gary Haran
==========================
 
thanks for the help...

a friend sent me this code which does what i'm looking for:

<div style=&quot;width:400px; height:400px; filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3)&quot;>look at this text!</div>

thanks again
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top