Code: Select all
<a href="foo.htm" class="ABC 123">blah</a>Is there a way around this limitation?
Flare 2019.R2
Code: Select all
<a href="foo.htm" class="ABC 123">blah</a>Code: Select all
Find:
(<a href=")(.*?)(" class=")ABC"
Replace with:
$1$2$3ABC 123"
Don't forget the quotation marks!Code: Select all
a[href*=".pdf"]:after { }Out of curiosity, what CSS were you trying to implement? For example, Dave's suggestion only affects anchor tags that point to PDF files (i.e. href*=".pdf"). So his example style selector would apply to <a href="foo.pdf">link text</a> but it would not apply to <a href="bar.htm">other link text</a>.jp_from_fiserv wrote:Seems like a solid suggestion... except I can't get it or its variants to work in Flare. I've looked the attribute stuff up on W3C and tested what I want to use in their "try me" browser/Chrome, and it works fine... but not in the Flare preview window or in the output, whatever the browser. Weird.
Maybe give some examples of how/why you use multiple classes, and what you've played with.jp_from_fiserv wrote:Seems like a solid suggestion... except I can't get it or its variants to work in Flare. I've looked the attribute stuff up on W3C and tested what I want to use in their "try me" browser/Chrome, and it works fine... but not in the Flare preview window or in the output, whatever the browser. Weird.
Thanks for the suggestion and the exposure to new CSS capabilities, at any rate. I'll keep playing with it and see what I can get working.