Ver Mensaje Individual
  #2 (permalink)  
Antiguo 16/11/2010, 22:06
rodomiro
 
Fecha de Ingreso: agosto-2010
Mensajes: 156
Antigüedad: 13 años, 7 meses
Puntos: 1
Respuesta: problema con iexplorer

Mira Internet Explorer se vuelve medio loco con los import... te recomiendo que utilices el metodo "LINK" en tu HTML, de otra forma vas a tener problemas.

Código PHP:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<
html xmlns="http://www.w3.org/1999/xhtml">
<
head>
<
meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<
title>Documento sin título</title>
<
link rel="stylesheet" type="text/css"href="css/global.css"/>
<
link rel="stylesheet" type="text/css"href="/csscomposicion.css"/>
<
link rel="stylesheet" type="text/css"href="css/reset.css"/>
</
head>

<
body
O si quieres puedes probar con:

Código PHP:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<
html xmlns="http://www.w3.org/1999/xhtml">
<
head>
<
meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<
title>Documento sin título</title>
<
link rel="stylesheet" type="text/css"href="css/global.css"/>
<
style>
@
import url('reset.css');
@
import url('composicion.css');
</
style>
</
head>

<
body
Saludos y Suerte.