- Home
- Categorie
- Coding e Sistemistica
- HTML e CSS
- css diversi per browser diversi
-
css diversi per browser diversi
Ciao
dovrei caricare un css diverso a seconda del browser utilizzato, ho provato ad inserire questo comando ma niente di fatto.if (Mozilla)
document.write("<link rel='stylesheet' href='xxx.css' type='text/css'>");
}
if (Explorer)
document.write("<link rel='stylesheet' href='yyy.css' type='text/css'>");
}Mi date un aiutino....
-
<!--[if !IE]>
<link rel="stylesheet" href="xxx.css" type="text/css" />
<![endif]--><!--[if IE]>
<link rel="stylesheet" href="yyy.css" type="text/css" />
<![endif]-->
-
GRAZIE MILLE Jess...
TI FARO' SAPERE
-
Ho provato e per explorer tutto ok ma firefox non carica il foglio di stile.
Che ne pensate?
Ciao Ciao
-
Allora prova cosi:
<![if !IE]>
<link rel="stylesheet" href="xxx.css" type="text/css" />
<![endif]><!--[if IE]>
<link rel="stylesheet" href="yyy.css" type="text/css" />
<![endif]-->