Home › Forums › CSS › Cutting image dinamically › Reply To: Cutting image dinamically
November 7, 2016 at 5:21 pm
#247618
Participant
You could give this a try:
.imgdiv:before {
content: "";
width: 7%;
height: 100%;
position: absolute;
background: white;
-webkit-transform: translate(-100%) skew(-7deg);
transform: translate(-100%) skew(-7deg);
-webkit-transform-origin: 100% 100%;
transform-origin: 100% 100%;
}