cssParentSelector
cssParentSelector copied to clipboard
CSS4 parent selector based on jQuery
Why is your repository deprecated? Do you work on a new Lib?
Please add media support, example: @media print { p! > .testClass { .... } }
e.g. ``` input[checkbox]:checked{ abc:abc; } ``` when no checkbox on page, it will output: ``` /*some css 1*/ { abc:abc; } /*some css 2*/ ``` thus makes 'some css 2'...
if I read the current css spec correctly the correct syntax has to be `!E > F` instead of `E! > F` see http://dev.w3.org/csswg/selectors4/
#### Hey, maintainer(s) of Idered/cssParentSelector! We at [VersionEye](https://www.versioneye.com/signup?promo_code=BOWER) are working hard to keep up the quality of the bower's registry. We just finished our initial analysis of the quality of...
How can I use this in greasemonkey.
A selector like ``` p! span::target ``` does not work for me. Is it possible to make it work?
would be great to use the parent selector within an inline style block rather than in an external css file
As I understand the spec, the following should work when the parent selector is implemented: h4! + p { } So it targets the h4 immediately above the p element....