According to sitepoint (a source I typically highly trust) when specifying font-family
names some Operating Systems/Browsers may be case-sensitive.
I've typically always used mixed-case values but I'm wondering if lower-case values will work just the same?
I don't have an overwhelming preference either way - but I'd hate for a page to render differently because I typed a lower-case "v"
vs. "V"
somewhere in a CSS file.
e.g. are there any known cases where 2 divs with the foo
and bar
classes below would actually render with a different font?
div.foo{
font-family:Verdana, Arial, Helvetica;
}
div.bar{
font-family:verdana, arial, helvetica;
}