0

All can anyone tell me how i could possible get this rotated shadow to an image using CSS?

If possible also with the border radius done in CSS

Image

hjpotter92
  • 78,589
  • 36
  • 144
  • 183
Rob Crouch
  • 53
  • 1
  • 6

1 Answers1

1

You'd probably have to create a transparent element with the shadow applied and rotate that behind your image. Something like:

<div class="img-wrapper" style="position: relative;">
    <div class="img-shadow" style="position: absolute; z-index: 1;"></div>
    <div class="img" style="position: absolute; z-index: 2;"></div>
</div>

SO isn't a "free freelancer" service, so give it a try and update your question with any issues you encounter.

isherwood
  • 58,414
  • 16
  • 114
  • 157