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.