hello,
this is maybe a lay-unspecific question, but does someone know if there is a easy way to rotate / turn text about 90 degrees?
thanks,
florian
rotate text about 90 degrees
hello,
this is maybe a lay-unspecific question, but does someone know if there is a easy way to rotate / turn text about 90 degrees?
thanks,
florian
Hi Florian!
Sure! Have a look here:
https://www.w3schools.com/cssref/css3_pr_transform.asp
div {
-ms-transform: rotate(7deg); /* IE 9 */
-webkit-transform: rotate(7deg); /* Chrome, Safari, Opera */
transform: rotate(7deg);
}
you can add the code to your custom CSS.
Good luck!
Marius