As I work on creating an HTML email, my aim is to incorporate a right arrow onto an HTML button. To achieve this, I have opted to utilize a special character and apply the transform-rotate property.
However, I am facing an issue where the text and arrow are appearing on separate lines. How can I ensure that the text and the arrow are displayed on the same line? I made an attempt using whitespace:no-wrap
on the td element, but unfortunately, it did not produce the desired result. Below you will find the snippet of code:
<tr>
<td class="call-to-action" align="center">
<button type="button" class="call-to-action1" value="Schedule Online Here" style="white-space:nowrap">SCHEDULE ONLINE HERE
<h1 class="little-arrow" style="-ms-transform: rotate(270deg);transform: rotate(270deg);-webkit-transform: rotate(270deg); /* Chrome, Safari, Opera */; color: white; font-size:14px">∇</h1></button>
</td>
</tr>