Question:
I would like to have dotted underline words using XSL-FO.I am able to underline the words using a template but not make the line dotted.
Here is the template that I am using:
Answer:
The values supported fortext-decoration
do not include anything for dotted lines:none | [ [ underline | no-underline] || [ overline | no-overline ] || [ line-through | no-line-through ] || [ blink | no-blink ] ] | inherit
You may be able to get close to the desired affect via
border-bottom-style
:db:link
yet the example you show is link
. Depending on the default namespaces in play and the definition of the db
namespace prefix, you may have a matching issue to address too.If you have better answer, please add a comment about this, thank you!