html file
 <ul id="navbar">
            <li class="selected">
                <a href="#"> HOME</a> 
            </li>
            <li>
                <a href="#"> ABOUT US</a>
            </li>
  </ul>
css file
  ul#navbar li {
  font-size: 13px;
  padding: 10px;
  display: inline;
  text-decoration: none;
  border: 1px solid #aaaaaa;
  }
and now I want to add bottom border to green color only on active list item.
 .selected {
 border-bottom: 5px solid #37F053;  
 }
but this does not work well. it still has the #aaa bottom border color
 
     
    