Answered
CSS styled text is hidden in Windows Chrome but shows in other browsers
I am using a CSS selector to style some text in a website.
.addtitle {
padding-left: 0;
margin: 3px 0;
}
In the HTML page, I have several para's styled with this selector, for example:
<p class="addtitle">
<strong>Móvil\WhatsApp:</strong>
</p>
These paragraphs do NOT display in Windows\Chrome (they are hidden). But they do show the way they should in FireFox, Explorer, Edge, Chrome on Android. I have cleared cache, forced reload, used another PC, but it makes no difference.
If I use an identical selector, but call it ".addrtitle", in the CSS file and HTML page, it displays in all browsers!
Anybody have an idea why this happens? Is "addtitle" some sort of reserved word in Chrome?
