![使用されていないリンク tag or, css not supported?](https://rvso.com/image/1395396/%E4%BD%BF%E7%94%A8%E3%81%95%E3%82%8C%E3%81%A6%E3%81%84%E3%81%AA%E3%81%84%E3%83%AA%E3%83%B3%E3%82%AF%20tag%20or%2C%20css%20not%20supported%3F.png)
私は Windows でテキスト ベースのブラウザーとしてリンクを使用しています。リンクの中央下部にレンダリングされるはずですが、そうではありません。CSS を完全に無視しているようです。
コード:
<!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>
これはリンクのデフォルトの動作ですか? それとも何か見落としているのでしょうか?
編集
参考になる場合: 出力の画像