I rotated the block that is given a background-image, I need the image not to be rotated but the block that is given the image to be rotated.
page link What must I do?
Thank you.
CSS:
.bg {
background-image: url("http://bagrattam.com/sss/website/images/other/paint.png");
background-repeat: no-repeat;
background-size: cover;
position: absolute;
top: -50%;
left: -10%;
right: -10%;
height: 170%;
z-index: -1;
transform: rotate(-10deg);
}