I want to specify two slightly different background colors, one for Mac OS, one for Windows.
it is available in the latest mozilla version.
-moz-os-version provides following values:
support is limited https://developer.mozilla.org/en-US/docs/Web/Guide/CSS/Media_queries
@media (-moz-os-version: windows-xp), (-moz-os-version: windows-vista),
(-moz-os-version: windows-win7), (-moz-os-version: windows-win8) {
body{
background-color: white;
}
}