WIP. Move Along!
React Components for Styling Elements.
Generic hover styles for any element
:link
:visited
:hover
:active
:first-letter
::first-line
TODO
Most likely we'll have to use React.Children
methods in these selectors alongside Array.prototype
methods
:first-child
:last-child
:nth-child(N)
:nth-oth-type(N)
:first-of-type
:last-of-type
:nth-last-of-type(N)
:nth-last-child(N)
:only-of-type
TODO
-
:not(S)
- Can implement using
Array.prototype.filter
- Can implement using
-
:empty
- Can implement using
Array.prototype.filter
- Can implement using
TODO
:focus
:target
:enabled
:disabled
:checked
:indeterminate
- Figure out how to handle the cascade, do users "opt-in" to default styles? Or must they be specific on everything?