連結未使用 tag or, css not supported?

連結未使用 tag or, css not supported?

我在 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> 

這是連結的預設行為嗎?還是我忽略了什麼?

編輯

如果有幫助:輸出影像在此輸入影像描述

答案1

據消息來源稱,鏈接忽略CSS。 (來源是連結開發者)

證據(顯示此類證據);

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

HTML 4.0 支援(無 CSS)

相關內容