Hello,
I am currently working on a report that will print on a #10 envelope. For this report, all textboxes must be rotated 270 degrees (vertical).
I have no problems rotating normal textboxes from the properties menu. However, I also have an HTML textbox that must be rotated.
I have tried the following HTML expressions in an attempt to rotate the text. Neither one was successful.
Expression 1:
<div style="transform: rotate(270deg)">
{Fields.client_addr1}
<br>
{Fields.client_addr2}
</div>
Expression 2:
<div>
{Fields.client_addr1}
<br>
{Fields.client_addr2}
</div>
<style>
div {transform: rotate(270deg)}
</style>
Please let me know if I'm doing something wrong, or if this isn't possible.
Thanks!