Quote:
Originally Posted by Frenzie
.pc-rw will match any element with a pc-rw class. E.g.:
Code:
<p class="pc-rw">
<img alt="I'm matched by .pcrw img! :-D">
</p>
div.pc-rw will only match divs with a pc-rw class.
Code:
<p class="pc-rw">
<img alt="I'm not matched by div.pcrw img! D-:">
</p>
|
Agreed. My "fix" was using the assumption that Sigil doesn't handle bare classes in combinators. Possibly the css overgeneralized and the pc-rw was only used on divs, but otherwise it's not a good solution.