0
所以我有一個HTML頁面,併爲我的頭一個固定的形象,但我也想有一個固定的導航欄正下方在那裏我可以有鏈接到另一個頁面我的服務器固定導航欄
上的按鈕這裏是我的代碼
<!DOCTYPE HTML PUBLIC>
<title>Equinox Web Chatroom Server</title>
<style type="text/css">
body{
margin:0;
padding:header-<length> 0 0;
}
div#header{
position:absolute;
top:0;
left:0;
width:500%;
height:header-<length>;
}
@media screen{
body>div#header{
position:fixed;
}
}
* html body{
overflow:hidden;
}
* html div#content{
height:100%;
overflow:auto;
}
</style>
<div
id="header"><img src="http://192.168.0.143/images/header.png" width="1700" height="46" alt="logo"<br>
<p>
<table>
<tr>
<td bgcolor= "black"><a href="http://192.168.0.143" color="cyan"style="text-decoration: none">Server Index</a> <a href="http://192.168.0.143/chat.html" style="text-decoration: none">Chat Room</a></td>
</tr>
</table>
</p><br>
</div>
這是你的學校項目嗎? – Shehary
不,我真的很想學習這 –
那麼,模仿標題的CSS或將「navbar」添加到「標題」中有什麼問題? –