CSS3 image rotation and reposition to fit in div
Posted
by
blid
on Stack Overflow
See other posts from Stack Overflow
or by blid
Published on 2012-11-30T16:42:37Z
Indexed on
2012/11/30
17:04 UTC
Read the original article
Hit count: 241
I'll start with JS Fiddle:
<div id="page" style="position: relative; background: #ccc; width: 500px; height: 600px;">
<div id="container" style="top: 50px; left: 100px; width: 200px; height: 200px; position: absolute; background: #fff;">
<img src="http://lorempixel.com/200/100/">
</div>
</div>?????????
I've got a whole page div #page, and inside that another div #container positioned absolute against #page.
What I want to achieve, is to rotate image inside it 90deg, 180deg or 270deg but always move that image to top left corner of #container.
I tried a little bit with transform-origin
but I couldn't find any solution.
© Stack Overflow or respective owner