I want to rotate a single word of text by 90 degrees cross-browser (>= ie6, >= ff2, webkit). How can this be done?
|
closed as not a real question by Kev♦ May 12 '12 at 16:44
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.
|
Updated this answer with recent information (from CSS Tricks). Kudos to Matt and Douglas for pointing out the filter implementation.
Old answer: 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.
|
|||||||||||||||
|
|
I am using the following code to write vertical text in a page. Firefox 3.5+, webkit, opera 10.5+ and IE
|
|||||
|
|
There is better and simplest way :) "works in all browsers including IE6. You might have seen the solution to this problem in terms of images or even javascript but let’s see how we can achieve the same effect with just CSS or CSS2." |
|||||||||||||||||||||
|
|
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]-->
|
|||
|
|
|
I've had problems trying to do it in pure CSS - depending on the font it can look a bit rubbish. As an alternative you can use SVG/VML to do it. There are libraries that help make it cross browser with ease e.g. Raphael and ExtJS. In ExtJS4 the code looks like this:
This will work in IE6+ and all modern browsers, however, unfortunately I think you need at least FF3.0. |
|||||||
|
