For example, let's say I have this HTML:
<ul id="nav">
  <li>one</li>
  <li id="my_item">two</li>
  <li>three</li>
  <li>four</li>
</ul>
and then the CSS:
#nav li {
  margin-bottom:10px;
}
#nav #my_item {
  margin-bottom:30px;
}
Why can't I just use #my_item for that last selector?
 
     
     
     
    