Best Practices for Selecting Elements
There are so many ways to target HTML with CSS, like I have shown you. So, how do you know which selector to use? This lesson contains best practices for selecting HTML elements.
We'll cover the following...
Let’s go over some guidelines to help you write better and more efficient CSS.
1. Use type selectors when all or most instances of an HTML element needs to be styled in the same way.
For example:
h1 {
color: red;
}
Where h1
represents any type selector. This will style every h1
in the document. It is appropriate to use this ...