HTML-Renderer icon indicating copy to clipboard operation
HTML-Renderer copied to clipboard

Comments in inline CSS (<style>) cause all styles to be ignored

Open tig opened this issue 6 years ago • 0 comments

This does not work:

<style>
/* comment */
body { color: blue };
</style>

This works:

``` html
<style>
body { color: blue };
</style>

tig avatar Jan 04 '20 16:01 tig