CSS

CSS: Class Attribute

If we want to select one or more elements, we can set a class attribute for the exact elements we want to change.

In the stylesheet, we can set a new class rule with a . followed by the name of the class. Like here with .gray-element.

  <head>
  <link rel="stylesheet" href="style.css">
 </head>
 <body>
  <ol> TO DO: <li class="gray-element">Floss</li>
   <li>Feed Cat</li>
   <li class="gray-element">Nap</li>
   <li>Plan holiday</li>
   <li class="gray-element">Order tea</li>
  </ol>
 </body>

.gray-element {
 background-color: lightgrey;
}

Sign up or download Mimo from the App Store or Google Play to enhance your programming skills and prepare for a career in tech.

You can code, too.

© 2024 Mimo GmbH