Home › Forums › CSS › [Solved] Rotated Text, Help with Page Placement. › Reply To: [Solved] Rotated Text, Help with Page Placement.
April 1, 2015 at 6:40 am
#199398
Member
You need to use transform-origin
and translate
in addition to the rotate
.
The problem will be that the footer is fixed position and so will collapse in height to the untransformed height of the element.It won’t resize to the rotated element.
As such you would have to assign a height to the footer or calculate it with Js.