![連結未使用 tag or, css not supported?](https://rvso.com/image/1395396/%E9%80%A3%E7%B5%90%E6%9C%AA%E4%BD%BF%E7%94%A8%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>
這是連結的預設行為嗎?還是我忽略了什麼?
編輯
如果有幫助:輸出影像