Hi, i want to rotate a single word of text by 90 degrees cross-browser (>= ie6, >= ff2, webkit).
|
1
|
|||||
|
|
|
For FF 3.5 or Safari/Webkit 3.1, check out: -moz-transform (and -webkit-transform). IE has a Matrix filter(v5.5+), but I'm not certain how to use it. Opera has no transformation capabilities yet.
|
||||||
|
|
|
Vertical text crossbrowser is not so difficult. On the dns4.nl there is a solution that works even in opera. I tested it with all versions ie, mozilla and safari (also crown). the link is: http://www.dns4.nl/pagina/html%5Fcode/vertikale%5Ftekst.htmlcomment for xkcd150 [quote] Problem is, that's relying on the canvas element. – xkcd150 Sep 20 at 10:13 [/quote]No, the procedure isn't relying on the canvas element. |
|||
|
|
|
I adapted this from http://snook.ca/archives/html_and_css/css-text-rotation :
<style>
.Rotate-90
{
display: block;
position: absolute;
right: -5px;
top: 15px;
-webkit-transform: rotate(-90deg);
-moz-transform: rotate(-90deg);
}
</style>
<!--[if IE]>
<style>
.Rotate-90 {
filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);
right:-15px; top:5px;
}
</style>
<![endif]-->
|
||
|
|
