is() selector issue
Was making an example for somebody on another server and found that while:
worked, the following use of
:is()
didn't:
I'm confused as to why?7 Replies
Unknown User•2y ago
Message Not Public
Sign In & Join Server To View
is/where/not () wil look into its current element. so you are still in cat-container, not the image
Unknown User•2y ago
Message Not Public
Sign In & Join Server To View
Im horrible with explaining. everthing between the () is for the element itself.
so you can't select descendants with it
Unknown User•2y ago
Message Not Public
Sign In & Join Server To View
the container does not know about the state of its children.
I follow, thanks