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

CSS selector for wildcard classes does not work

Open tig opened this issue 6 years ago • 0 comments

this is valid CSS

code[class*="language-"],
pre[class*="language-"] {
	color: black;
}

Matches

<code class="language-typescript">xyz</code>

HTML-Renderer ignores it.

tig avatar Jan 04 '20 16:01 tig