To achieve that effect I used the following CSS:
Code: Select all
th.skew {
height: 100px;
width: 40px;
position: relative;
vertical-align: bottom;
-webkit-transform: skewX(-45deg);
-webkit-transform-origin: 60% 100%;
-o-transform: skewX(-45deg);
-o-transform-origin:60% 100%;
transform: skewX(-45deg);
transform-origin: 60% 100%;
}What I can't figure out is how to replicate this same effect inside Flare. I get nothing if I try to use the same CSS in a blank project. The end goal is to have this output in a printed PDF, which I know doesn't support a lot of styles, but I can't figure out why not these ones. Anyone come across this situation and found a resolution before?
Any advice on this would be very appreciated.
Cheers,
G