Oh, as in rotate the element. Well, no, this is currently doable via
CSS on three browsers:
Safari 3.0+ (Chrome since it's also WebKit based) and Firefox (3.5+)
by using CSS Transforms and IE6+ by using CSS Filters.
#element {
-webkit-transform: rotate(90deg);
-moz-transform: rotate(90deg);
}
I can't remember how to do it in IE.
On 4 Jul 2009, at 14:40, Joshua Partogi wrote:
Let's say I have a text inside a div. Usually a text will be displayed
in horizontal. I would like to turn that div so the text will be
displayed horizontal. In other words I would like to turn the element
to 90 degrees. Is it possible doing this with Mootools?
Kind regards,
On Jul 4, 9:28 pm, Oskar Krawczyk <[email protected]> wrote:
What do you mean?
On 4 Jul 2009, at 04:50, Joshua Partogi wrote:
Dear all,
First of all I would like to say sorry if this question sounds
silly. Is it possible to turn an element to go vertical with
mootools? Is there any mootools function to achieve this?