HTML Element Style How to - Style two level down








Question

We would like to know how to style two level down.

Answer


<!DOCTYPE html>
<html>
<head>
<style type='text/css'>
#test * * {<!--  ww  w  .  j a va 2  s.co m-->
  color: red;
}
</style>
</head>
<body>
  <div id="test">
    <div>
      fdfdf
      <div>fdfdf</div>
    </div>
  </div>
</body>
</html>

The code above is rendered as follows: