ArthurHub / HTML-Renderer

Cross framework (WinForms/WPF/PDF/Metro/Mono/etc.), Multipurpose (UI Controls / Image generation / PDF generation / etc.), 100% managed (C#), High performance HTML Rendering library.
https://htmlrenderer.codeplex.com/
BSD 3-Clause "New" or "Revised" License
1.24k stars 522 forks source link

css class names with periods don't work #168

Open tig opened 4 years ago

tig commented 4 years ago

Consider

<span class="token property">property</span>

This CSS should work, but doesn't:

     .token.property {
        color: #c92c2c;
    }

But this does

     .property {
        color: #c92c2c;
    }