Skip to content

Instantly share code, notes, and snippets.

@Holek
Holek / dabblet.css
Created February 1, 2012 14:51 — forked from anonymous/dabblet.css
CSS3 rotation with transform-origin working with IE 7+
/**
* CSS3 rotation with transform-origin working with IE 7+
*/
#some_block{
-webkit-transform: rotate(-90deg);
-webkit-transform-origin: 100% 100%;
/* Saf3.1+, Chrome */
-moz-transform: rotate(-90deg);