I’ve just faced a strange thing… HTML code like a
<font ... color=rgb(0,85,0)>Hello World</font>
in FF and IE it is green but in Google Chrome the color is something like brown :S
So my question is how to set a proper rgb color format for google chrome?
<font color=rgb(0,85,0)>is not valid HTML.Aside from the fact that you should put quotes around the attribute value and that
fontis deprecated,fontis guaranteed to work only with color names and 6-digit hex values. See the W3C page.If you need other ways of specifying your color, use a style.