I want to rotate the whole web page 90, 180 or 280 degrees.
Solution how to rotate 90 degrees is given in answer Rotate all html element (whole page) 90 degree with CSS? . If I change 90 degrees to 270 degrees web page rotates "out of the screen" or is not centered to the screen. I would like to rotate the page like I rotate my monitor. My page starts from top left.
How to edit this code to properly work with 180 and 270 degrees?
.wrapper{
transform: rotate(90deg);
transform-origin:bottom left;
position:absolute;
top:-100vw;
height:100vw;
width:100vh;
background-color:#000;
color:#fff;
overflow:auto;
}