Cascading style sheets

Demonstrating specificity of style rules

by eitanp461

HTML

<html>

  <head>
    <style>
      div {
        color: red;
      }
      
      .inner {
        color: green;
        font-weight: bold;
      }

    </style>
  </head>

  <body>
    <div>
      This is an outer div without a class attribute
      <div class="inner">
        This is an inner div with the class "inner"
      </div>
    </div>
  </body>

</html>