Does anyone know how to achieve skew like this using CSS's new transform property?

As you can see I'm trying to skew both corners, anyone know if this is possible?

link|improve this question

75% accept rate
feedback

4 Answers

up vote 1 down vote accepted

Works in Chrome and FF 4: http://jsfiddle.net/rudiedirkx/349x9/

link|improve this answer
This isn't skew, and it doesn't skew contents. – desau Dec 15 '11 at 7:03
Yup. It's a hack. It won't work with the background having a background color/image either: jsfiddle.net/rudiedirkx/349x9/411 – Rudie Dec 15 '11 at 11:18
feedback

I think you mean webkit transform.. please check this URL out http://www.the-art-of-web.com/css/3d-transforms/ it could help you.

link|improve this answer
Thanks a bunch for that! – realph Mar 14 '11 at 1:20
feedback

You can use -webkit-perspective and -webkit-transform together.

<div style="-webkit-perspective:300;">
<div style="-webkit-transform:rotate3d(0, 1, 0, 30deg);width:200px;height:200px;background:#D73913;"></div>
</div>

This works only in Safari.

link|improve this answer
feedback

This may help:

http://www.paulrhayes.com/2009-07/animated-css3-cube-interface-using-3d-transforms/

link|improve this answer
Thanks a bunch for that! – realph Mar 14 '11 at 1:19
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.