HTML Element Style How to - Style first level of menu only








Question

We would like to know how to style first level of menu only.

Answer


<!DOCTYPE html>
<html>
<head>
<style type='text/css'>
div>ul {<!--from  ww  w. j  ava2s . c  o m-->
  color: #CCC;
}

ul {
  color: #000;
}
</style>
</head>
<body>
  <div>
    <ul>
      <li>level 1</li>
      <li>level 1</li>
      <li>level 1</li>
      <li>level 1
        <ul>
          <li>level 2</li>
          <li>level 2</li>
          <li>level 2</li>
        </ul>
      </li>
    </ul>
  </div>
</body>
</html>

The code above is rendered as follows: