Our CSS styles used to work seamlessly with the <p>
tag until the latest Firefox update to version 49.0.1. However, after the update, the text doesn't appear at all when the class is applied to the <p>
tag. Removing the class displays the text properly.
Here are the classes and tags being used:
.primaryText {
color: #0000;
}
<p class="primaryText">Hello world</p>
Did something change with the new Firefox browser?