Glossary
- Background image
- Border color
- Border radius
- Border width
- Borders
- Class attribute
- Color
- Comment
- First-child selector
- Font family
- Font size
- Font style
- Font weight
- Height
- Linking a style sheet
- Margin
- N-th-child selector
- Overflow property
- Padding
- Pixels
- Position property
- Rounding an image
- Selectors
- Text align
- Transition property
- Width
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.