+ 5
Can I rotate a page of text on x axis ?
I want x axis at bottom of page
5 Respostas
+ 3
Thanx a lot
+ 3
Thank you Jack
+ 2
you must use
position: absolute ;
bottom:0 ;
+ 2
yes, you can. here is the code snippet to do so .vertical-text {
transform: rotate(90deg);
transform-origin: left top 0;
}
+ 2
Thank you Mansi .