Thomas Dumm wrote:
>
> <?Pub _cellfont Shading='gray1'?>
>
> I tried the following in the css-file, but it did not work:
>
> entry:contains-processing-instruction("Pub _cellfont Shading='gray1'"){
> background-color: #D8D8D8;
> }
>
It is:
entry:processing-instruction("Pub") {
background-color: #D8D8D8;
}
entry:contains-processing-instruction styles the entry element and and
not its processing-instruction child.
See
http://www.xmlmind.com/xmleditor/_distrib/doc/csssupport/pi_comments.html

