I'm just wondering if this shape I have in the image url is doable in css3 with webkit.
Asked
Active
Viewed 103 times
0
-
take a look at this http://stackoverflow.com/questions/10568334/css-to-produce-adjacent-divs-with-angled-borders – Jmh2013 Mar 07 '14 at 20:49
-
1**FIDDLE!** http://jsfiddle.net/qhxLu/ - **SOURCE** http://www.css3shapes.com/ – Pedro Estrada Mar 07 '14 at 20:50
-
i think you got your solution, so choose an answer to mark as accepted – brrystrw Mar 08 '14 at 03:36
3 Answers
2
Here is a good source for CSS shapes
Just edit the class properties to your liking to get desired shape
CSS:
.parallelogramRight {
width:100px;
height:100px;
border:1px solid #000;
background:yellow;
transform: skew(-20deg);
-o-transform: skew(-20deg);
-moz-transform: skew(-20deg);
-webkit-transform: skew(-20deg);
}

brrystrw
- 471
- 7
- 20

Ryan Salmons
- 1,429
- 10
- 21
- 42
0
Yes it is.
-moz-transform: skewX(-23deg);
-webkit-transform: skewX(-23deg);
-o-transform: skewX(-23deg);
-ms-transform: skewX(-23deg);
transform: skewX(-23deg);

Mark
- 4,773
- 8
- 53
- 91