Enlaces que no se usan tag or, css not supported?

Enlaces que no se usan tag or, css not supported?

Estoy usando enlaces como navegador basado en texto en Windows. Se supone que también se representa en la parte media inferior de los enlaces, pero no es así. Al parecer, está ignorando el CSS por completo.

Código:

 <!DOCTYPE html>
 <html>
 <head>
 </head>
 <style>
 html,body {
   height:100%;  /* new */
 }

ul#navigation {
    height: 70px;
    list-style: none;
    margin: 0;
    padding: 0;
    border: 1px solid #ccc;
    border-width: 1px 0;    
    text-align: center;
    font-size: 22px;
    font-family: 'Cham-WebFont', Arial, sans-serif;
    background-color: #FFF;
    position: fixed;   /* new */
    bottom: 0;  /* new */
    width: 100%;  /* new */
}

ul#navigation li {
    display: inline;
    margin-right: .75em;
    list-style: none;
    margin: 0;
    padding: 0;
}
ul#navigation li.last {
    margin-right: 0;
}
</style>
<body>
    <div class="MainContainer">
        </div>  
    <div id="MenuContainer">
            <ul id="navigation">
                <li>Text</li>
            </ul>
    </div> 

¿Es este el comportamiento predeterminado de los enlaces? ¿O pasé por alto algo?

EDITAR

Si es útil: Imagen del resultadoingrese la descripción de la imagen aquí

Respuesta1

Según una fuente, enlacesIGNORARcss. (La fuente es un desarrollador de enlaces)

Evidencia (que lo sugiera);

Dehttp://links.twibright.com/features.php:

Soporte HTML 4.0 (sin CSS)

información relacionada