¿Cómo admite Internet Explorer 8 el atributo de esquema CSS?

lossitio web dice que es compatible sin embargo, el siguiente estilo no se procesa.


    <style type="text/css">
        a[href="#"]{outline:#f00 dotted 2px !important}
    </style>

sin embargo, lo siguiente hará


    <style type="text/css">
        a[href="#"]{border:#f00 dotted 2px !important}
    </style>

Aqui esta mi documento


<?xml version="1.0" encoding="UTF-8"?>
<!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>
   <title>...</title>
   <link type="text/css" rel="stylesheet" href="../content/style.css" />

</head>
<body>...</body>
</html>

Respuestas a la pregunta(2)

Su respuesta a la pregunta