cssselect2 icon indicating copy to clipboard operation
cssselect2 copied to clipboard

CSS selectors for Python ElementTree

Results 1 cssselect2 issues
Sort by recently updated
recently updated
newest added

The following css works: ```css :root { --some-variable: #f00; } ``` But once a `:host` is added it breaks: ```css :root, :host { --some-variable: #f00; } ``` > WARNING: Invalid...