2
我想爲我的網站創建一個導航欄,併發生了一些奇怪的事情。它是導航欄周圍的邊框,我無法移除它?我試圖尋找錯誤,但沒有任何工作。我嘗試在樣式標籤中將border設置爲0px,但沒有工作,邊框仍然存在,怎麼樣?請幫助我,在此先感謝navbar有它的邊框,它不能被刪除
代碼在這裏:
<!DOCTYPE html>
<html>
<head>
<style>
#nav {
overflow: hidden;
background-color: #282e30;
border: 0px;
}
#nav a {
float: left;
color: #fff;
text-align: center;
padding: 14px 16px;
text-decoration: none;
font-size: 17px;
border: 0px;
}
#nav a.active {
background-color: #286a82;
color: white;
border: 0px;
}
</style>
</head>
<body>
<div id="nav">
<a class="active" href="/home.html">Home</a>
<a href="/contact.html">Contact us!</a>
<a href="/about.html">About!</a>
</div>
</body>
</html>
我添加了body {margin:0px;}並上傳了它,它現在顯示爲不帶邊框/邊距:D謝謝 –