Seeking assistance to understand the functionality of transform-origin
, my research efforts have been unsuccessful in finding a solution tailored to my specific situation. Here's the challenge I'm facing:
I have a fixed footer with predetermined height, containing two lines of rotated text (left column). How can I gain precise control over its positioning? Currently, the text begins at the top of the footer and extends beyond it. You can view my current code setup in this fiddle: http://jsfiddle.net/eury7f6f/
If anyone has any suggestions on how to achieve the desired outcome, please share.
.vertical-text {
-webkit-transform: rotate(-90deg);
-moz-transform: rotate(-90deg);
-ms-transform: rotate(-90deg);
-o-transform: rotate(-90deg);
transform: rotate(-90deg);
-webkit-transform-origin: 0 0;
-moz-transform-origin: 0 0;
-ms-transform-origin: 0 0;
-o-transform-origin: 0 0;
transform-origin: 0 0;
filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);
}