Why does the following html snippet:
<html>
<head>
<title>Test</title>
</head>
<body>
Some Text<br />
<font color="rgb(0,0,0)">More Text</font><br />
<span style="color: rgb(255, 0, 0);">
<font color="rgb(0,0,0)">And the last of the text!</font>
</span>
</body>
</html>
Result in the output in the picture at the link (notice the red colouring!):
This seems to happen in Chrome and Firefox and even in Outlook (in HTML emails) but the text shows as black in IE 11.
It's not necessarily something I need to or can fix but that sort of styling is something given by a third party component and it's led me to wonder why this gives the result it does. I can't find any suggestions anywhere on the web on why this would be red(ish) rather than black.
I want to understand it more than anything.