I want to add a specific style to my page, but only on firefox running on the computer. I use this code for targeting only for Mac, but what will be the equivalent of Windows? and is there a way to do this using only media queries, not javascript?
var FF = !(window.mozInnerScreenX == null);
if(FF) {
if(navigator.platform.indexOf('Mac')>=0)
{
// is a mac and on firefox
}
source
share