Means "all h1 elements that are descendants of the element with the identifier" header "(probably you need this one).
#header.h1
Means "element with id" header ", which also has class name h1" (you definitely don't need this one).
Means βall h1 elements that are direct child elements (that is, directly below it) with aβ header βelement. This type of selector is not supported by IE6. This may work, but you probably want to get the first one.
source share