CSS3 Rotate Feature works well in IE too


/ Published in: CSS
Save to your folder(s)

CSS style to rotate a particular layer or object


Copy this code and paste it in your HTML
  1. iframe {
  2. -webkit-transform: rotate(-90deg);
  3. -moz-transform: rotate(-90deg);
  4. transform: rotate(-90deg);
  5. position: absolute;
  6. filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=3);
  7. }

URL: http://forums.wittysparks.com/topic/css3-rotate-feature-works-well-in-ie-too

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.