First page Back Continue Last page Image
Example Of A Class Pair
- <div class=“urgent”> Call 911 for emergencies</div>
- .urgent { color: red; font-weight: bold; }
- div.urgent { color: red; font-weight: bold; }
- The code in our target .html file
- The code in our style .css file
- This line indicates any selector using the urgent class
- This line indicates only <div> using the urgent class
- <span class=“urgent”> See a Problem – Report it</span>
- This works on both lines of code below
- This works only on the <div> below