aquí le hice un par de cambios a tu hoja de estilos, funciona tanto en i.e como en f.f.
Código PHP:
<!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>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>TITLE_PAGE</title>
<style type="text/css">
#enlace{
margin:0px;
padding:0px;
border: 4px solid #666;
background-color:#000;
width:200px;
}
#texto{
color:#444;
font: 18px tahoma, arial;
height:20px;
margin:10px;
}
#linea{
display:block;
margin:0; padding:0;
width:100px;
background-color:#F48511;
height:10px;
width:100%;
}
</style>
</head>
<body>
<div id="enlace">
<div id="texto">enlaceTexto</div>
<div id="linea"></div>
</div>
</body>
</html>