I need to render a frame (ie, a picture frame around a picture) by rotating an image:
- 0 degrees for the left
- 90 for the top
- ... and so on.
As far as I can tell there isn't a border-image-left|right|top|bottom
property, although this would work too - please correct me if I'm wrong.
It seems I'll need to use the border-image
property. Does anyone know if possible to rotate the image depending on the side?
I guess the other messy options would include
- Creating four div's around the image
- Manually generating a frame border image (this won't really work as 1. we've got over 300 images, and 2. the frames need to be used on images with different aspect ratios... )
Edit: 'depending on the side' = 0 degrees for left, 90 degrees for top, 180 degrees for right, 240 for bottom... See image below for an example.
Partially forced, but wrapping it in a div and span and playing with pseudo elements and transforms seemed to work. The image is wrapped in an
.img-container
div and a span, and the::before
and::after
elements are absolute positioned around the image.Here's the markup:
And the styling:
May be a little much
Here's a fiddle