I'm having an issue with styles. My code is something like this:
.grey {
color:grey;
}
<span class="grey">
<p align="justify"><b>Text</b></p>
</span>
<span class="grey">
Text 2
</span>
"Text" appears black, while "Text 2" appears grey. I've tried using a div instead of span, but doesn't work. (I've read that span -> p isn't allowed)
PS: (It works locally with Firefox, but when I'm checking it on the iPad (this is for an iPad app), it doesn't).
Is there a way to force p to apply the style of the span?.