I'm trying to get rotated images. The CSS below works for FF, Safari and Chrome but not for IE (typical!). Any ideas how I can get rotation happening in IE?
Many thanks all!Code:#two {float: right; position: relative; width: 200px; height: 200px; margin: 20px; color: #134b96; padding: 5px 5px 5px 5px; background: #FFFFFF; border-width: 3px; border-style: solid; border-color: #FCF93D; outlineStyle: solid; outlineWidth: 1px; outline-color: #FFFFFF; z-index:0; behavior:url(-ms-transform.htc); -moz-transform:rotate(10deg); -webkit-transform:rotate(10deg); -o-transform:rotate(10deg); -ms-transform:rotate(10deg); } #two:hover { -moz-transform:rotate(-30deg); -webkit-transform: rotate(-30deg); -o-transform:rotate(-30deg); -ms-transform: rotate(-30deg); }



Reply With Quote
).
) for doing CSS3 support in Internet Explorer. However, if you like to use that -ms-transform -property, go ahead and check:
Bookmarks