While working on styling an HTML email, I've encountered an unexpected issue with inline CSS in Gmail. I set the color of text in a table row using the following code:
<tr style='color: #000; font-size: 14px; font-family: Verdana, serif;'>
However, when I view this email in Gmail, the font-family and color settings are being overridden by Gmail's default styling. This was confirmed by inspecting the email with Firebug:
Instead of the desired black color and Verdana font, Gmail is applying a purple color and switching the font family to arial, sans-serif. Is there a way to safely override Gmail's predefined styles?
UPDATE
After changing the color to #212a2c, which is not black, the color displayed correctly. However, the font-family remains stuck on arial.