Knowing about the asterisk as a wildcard in CSS is not new to me.
My query is: Is there a CSS selector that targets every single element on a web page, including html, body, and all descendants?
I have made attempts like:
*
{
color: green; /*I used this test but it didn't work*/
}
Does CSS allow for such extensive targeting?
I won't divulge why I need this, just enjoying some CSS experimentation, LOL :)