BlazorStyled icon indicating copy to clipboard operation
BlazorStyled copied to clipboard

CSS: Support of chaining pseudo class

Open chanan opened this issue 6 years ago • 0 comments

CSS 3 Spec: https://www.w3.org/TR/selectors-3/#selector-syntax

 .controls-arrow:hover:before

Work around is:

<Styled>
.controls-arrow:hover:before {

}
<Styled>

I think the spec says that any simple pseudo class can be chained but only one pseudo element can occur at the end. Not sure yet how to support that in the Tag syntax.

chanan avatar Feb 15 '20 20:02 chanan