CSS Classes
CSS classes target multiple elements sharing the same name. Add a class with class="name" and select it in CSS with .name.
Classes are the cornerstone of reusable, maintainable CSS.
CSS classes target multiple elements sharing the same name. Add a class with class="name" and select it in CSS with .name.
Classes are the cornerstone of reusable, maintainable CSS.
<!-- HTML -->
<p class="highlight">Important paragraph</p>
<span class="highlight">Also highlighted</span>
/* CSS */
.highlight {
background: yellow;
font-weight: bold;
}
Name classes by purpose (e.g. .btn-primary) not by appearance (e.g. .blue-button).