Cause I use it a lot myself I have just written the CSS down in a post here for others to view as well:
#rotate-90-deg {<br />
-moz-transform: rotate(90deg);<br />
-webkit-transform: rotate(90deg);<br />
-ms-transform: rotate(90deg);<br />
-o-transform: rotate(90deg);<br />
transform: rotate(90deg);<br />
}
This Rotates text 90 degrees clockwise. For counter clockwise I recommend a positive number (i.e. 270deg) instead of a negative number.
And now we’re talking cross browser, here’s the cross browser opacity css code as well:
#transparent {<br />
opacity: .75;<br />
filter: alpha(opacity=75);<br />
-ms-filter: "alpha(opacity=75)";<br />
-khtml-opacity: .75;<br />
-moz-opacity: .75;<br />
}
That sets the div with id=”transparent” to an opacity of 75% (which is a transparency of 25%).



0 Comments
You can be the first one to leave a comment.