De acordo com uma fonte, links IGNORES css. (Fonte sendo um desenvolvedor de links)
Evidência (sugerindo tal);
De link :
HTML 4.0 support (without CSS)
Estou usando links como um navegador baseado em texto no Windows. Supõe-se que seja renderizado no meio dos links, mas não é. Está ignorando totalmente o CSS.
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>
Este é o comportamento padrão dos links? Ou eu negligenciei alguma coisa?
EDITAR
Se útil: Imagem da saída
De acordo com uma fonte, links IGNORES css. (Fonte sendo um desenvolvedor de links)
Evidência (sugerindo tal);
De link :
HTML 4.0 support (without CSS)