function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
hylim1215hylim1215 

how to use letter-spacing in visualforce page renderas PDF?

Hi,

is 'letter-spacing' not supported in visualforce rederas PDF? i have my css but the letter-spacing seems not working. works well in HTML..
 
tr.stdstyle{
                    text-align:left;
                    font-size:12px;
                    font-family: sans-serif;
                    letter-spacing:1px;

                }


<table border="0" cellspacing="0" cellpadding="0" width="100%" id="table1">

<tr class = "stdstyle" style="vertical-align:top">
                        <td>&nbsp;</td>
                        <td >Address</td>
                        <td width = "1%">: </td>
                        <td >some very very very long long long text</td>
                    </tr>

</table>
Thanks.
Vetriselvan ManoharanVetriselvan Manoharan
While generating as PDF the letter spacing is not supported
hylim1215hylim1215
any workaround?

thanks.