I'm trying to do left-aligned and right-aligned sp...
# advancedpdf
d
I'm trying to do left-aligned and right-aligned spans inside of a <td> on a template (same as this jsfiddle) However, even with all css styles removed except the
.right{float:right;}
and
.left{float:left;}
, both spans are left-aligned Does NetSuite AdvancedPDFs/freemarker not allow css float properties?
r
Hi David - we use the Advanced PDF/HTML Template pretty extensively ... looks like we're using the old school <td align="right"> and that's getting the desired results.
d
Thanks Rick, of course I should just use two
<td>
cells with
align
instead of one... 👍