HTML Element Style How to - Change current item background








Question

We would like to know how to change current item background.

Answer


<!DOCTYPE html>
<html>
<head>
<title>SO - 14452893 - jsFiddle demo by arunpjohny</title>
<style type='text/css'>
.navi ul li {<!-- w ww .  jav  a  2  s . co m-->
  padding: 20px;
  background-color: #000;
}

.navi ul li.current_location {
  background-color: #fff;
}
</style>
</head>
<body>
  <nav class="navi">
    <ul>
      <li><a>General Config</a></li>
      <li class="current_location"><a>Menu</a></li>
      <li><a>User Level</a></li>
      <li><a>User</a></li>
      <li><a>Tag</a></li>
      <li><a>Log</a></li>
    </ul>
  </nav>
</body>
</html>

The code above is rendered as follows: