While researching how to create a nested table using list elements in CSS, I came across this interesting page: .
Upon examining the stylesheet, I noticed unfamiliar symbols being used that appear to be CSS operators, such as the >
and *
symbols.
For instance:
ul#navlist li * a:link, ul#navlist li * a:visited
After searching on Google, I discovered that >
signifies a parent/child relationship between elements, but I am still unsure about the significance of *
. I am also interested in knowing if there are other similar "operators" like these, and if so, could someone point me towards a comprehensive guide on them?