margin-left: 0;
list-style-type: none;
  • $("#container h1") selects every <h1> element found within the #container element.
  • $("#container > h1") selects only those <h1> elements that have the #container element as their parent (not grandparent, or other form of ancestor).