Is there a difference between .class element and element.class in a CSS selector? I had always been shown element.class but just the other day came across a CSS file at work that had .class element and wanted to know if this was just a style choice (in which case I would make my changes match), or if there was a specific reason (in which case I would not necessarily want to make my changes match).
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
|||||
|
|
For example, HTML:
For example, CSS:
|
||||
|
|
|
"element.class" selects elements that have the given class. ".class element" selects all elements that are children of anything with the given class. Example:
|
|||
|
|