You need to sign in to do that
Don't have an account?

Displaying output value with underline
Hi,
I am working on a visualforce page which will render as a pdf. I have to display the output values with underline. I am using style value text-decoration:underline for outputText tag. But it is not displaying with underline. Kindly let me know how can this required be achieved.
Thanks,
MVP
try like this
<u> <apex:outputtext.............../></u>
<u> tag is also only not working when it renders as a pdf.
if you dont mind could u plz post the code.. y because i am able to get the underline when i am rendering as pdf with the above line of code...
<h1 style="font-size: 25px;margin-left:100px;font-style:normal;font-weight: normal;">This is to certify <span style="font-weight: bold;margin-left:120px;text-decoration:underline;">{!con}</span> </h1>
</div>