div.classname vs div .classname
div.classname
:This selector targets
<div>
elements that have the classclassname
.Example:
Only the first
<div>
will have its text color set to red because it has the classclassname
.
div .classname
:This selector targets any element with the class
classname
that is a descendant of a<div>
element.Example:
Only the first
<span>
will have its text color set to blue because it is inside a<div>
element.
Last updated