I'm trying to diagnose some bad formatting coming out of someone elses CSS. Their CSS file has a lot of entries in the form:
..foo { font-size: 10px; color: #000000; text-decoration: none }
The Firefox web developer plugin says:
Expected identifier for class selector but found '.'. Ruleset ignored due to bad selector.
I read through http://www.w3.org/TR/CSS2/selector.html and the best I can figure is that if "*" can be omitted, that "..foo" means ..foo".
So, what does "..foo" mean?