I added a class to an element and defined styles in my CSS file, but the styles aren’t being applied. What could be the issue?
There are a few reasons this might happen:
<!-- Incorrect -->
<div class="container">
<!-- Correct -->
<div class="my-container">
/* Incorrect */
.My-container { color: red; }
/* Correct */
.my-container { color: red; }