De acuerdo.
También puedes hacerlo sin ID, añadiendo dos clases diferentes:
Código:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Documento sin título</title>
<meta http-equiv="Content-Type"
content="text/html; charset=iso-8859-1" />
<style>
.comun { border-top: 7px solid #2b4882;
border-bottom: 7px solid #2b4882;
height:173px;
background: #2b4882 url(img/menu_grupo.jpg) no-repeat;
}
.convencional { border-bottom-color:#4a8359; background-image:url(img/menu_convencional.jpg);}
.laboratorio { border-bottom-color:#999999; background-image:url(img/menu_laboratorio.jpg); }
.ecologica { border-bottom-color:#bad46a; background-image:url(img/menu_grupo.jpg); }
.exportacion { border-bottom-color:#607bb0; background-image:url(img/menu_grupo.jpg);}
</style>
</head>
<body>
<div class="comun laboratorio"></div>
</body>
</html>
Luego esto acepta selectores como .comun a, .comun ul li, o cosas así sin problemas.
Ciertamente, ni idea de cuál es ese bug de explorer.
Mikel.