I tried to transform an image that it looks like this image from netflix: background-image
transform: rotateY(-30deg) rotateX(30deg);
perspective: 800px;
transform-origin: 50% 0;
But there is something missing ...
I tried to transform an image that it looks like this image from netflix: background-image
transform: rotateY(-30deg) rotateX(30deg);
perspective: 800px;
transform-origin: 50% 0;
But there is something missing ...
I think this is approximately what you're looking for, rotate3d() css function :
transform: rotate3d(1, 1, 1, 35deg);