While working on a project, I have encountered multiple rules that look like this:
* + html {
/.../
}
Although I understand the purpose of using *
and +
, I am unsure about the significance of this particular construction.
Additionally, I came across another rule:
* html {
/.../
}
I have not been able to identify where these rules are being implemented.
Considering that html
is unique per page, wouldn't it make more sense to simply utilize the html
selector? Is there some kind of mysterious reasoning behind this?