Rotate text in document template

0
Hi, Anyone know how to make rotate text in document template? I want to follow like this image below. The file name need to be rotate as current practice.  
asked
1 answers
0

Hi Muhammad Ikhwan Afiq bin Azmir,

 

 add the following CSS style to your document:

 

transform: rotate(-90deg);
  -webkit-transform: rotate(-90deg);
  -moz-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  -o-transform: rotate(-90deg);

  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);

 

This will give you the following result

 

Hope this will help you,

 

good luck,

Jan

answered