Fco. Mario Barcala Rodr?guez wrote:
>
> I have been testing last release of XXE Personal Edition 3.8.0 and I
> have discover a possible problem.
>
> I have an xxe stylesheet which works perfectly with XXE Standard Edition
> 2.9 versi?n, and I have detected that the new versi?n does not apply the
> styles to tag names which include underscore _.
If this is the case, then XXE v2.9 had a bug which has been fixed in
later releases.
> For example:
> ano_publicaci?n (I think the accent is not the problem because any other
> tag names with accent works fine).
>
> I think you could solve this problem (in case it was a bug).
Unlike the dash character '-', the underscore character '_' is not
allowed in CSS identifiers. You need to escape this character.
Instead of specifying:
my_element {
color: red;
}
Please specify:
my\_element {
color: red;
}
See http://www.w3.org/TR/REC-CSS2/syndata.html#tokenization