RE: Underline content with properties files

2006-08-29 Thread Thomas.Vaughan
CSS has a :first-letter meta style that could do what you want. Besides, is deprecated anyway. Something like this should work: Properties file: name.key=Name CSS file: p:first-letter { text-decoration:underline; } HTML file: Name value from props file -Original Message- From: P

Re: Underline content with properties files

2006-08-28 Thread D&J Gredler
There's a CSS "first-letter" pseudo element, but I don't know how many browsers support it. On 8/29/06, Oort, Dick <[EMAIL PROTECTED]> wrote: You could create a custom component for this, and pass the word as a parameter. In the html part of the component, you use ognl/java.lang.String to split

RE: Underline content with properties files

2006-08-28 Thread Oort, Dick
You could create a custom component for this, and pass the word as a parameter. In the html part of the component, you use ognl/java.lang.String to split the String into 2 parts, putting the first part between . Regards, Dick -Original Message- From: Peter Dawn [mailto:[EMAIL PROTECTE