我只是在學習html,我的軟件開發班的老師告訴我我應該開始在自己的時間嘗試編程,所以我決定嘗試做一個簡單的網站。正如你所看到的,我並沒有走得太遠,一直在困擾着如何製作導航欄。我希望導航欄上的每個框都是可點擊的,並且能夠鏈接到正確的網頁。我曾嘗試在每個li之前放置一個標籤,並且沒有圖像映射,只要這些框能夠鏈接到相應的網頁,我就可以做到這一點,但每個盒子之間都有一個空格,而我沒有這也導致第六個盒子被推到第一個盒子下面。使用圖像映射時,沒有鏈接,當我檢查元素時,它說圖像映射爲0 x 0.讓我知道我在導航欄中做了什麼錯誤,或者是否有更好的方法來做到這一點。 HTML:簡單的導航欄(初學者)
body {
background-color: #FFFFFF;
margin: 0;
}
#name {
font-size: 19pt;
margin-top: 0;
padding-top: 0;
width: 100%;
background-image: url(wood.png);
height: 81px;
display: block;
}
h2.Title {
position: absolute;
margin-bottom: 0;
padding-bottom: 0;
left: 535;
top: 1;
}
h2.TitleShadow {
position: absolute;
left: 533;
top: 0;
color: #368BC1;
}
#navbar {
display: table;
height: 30px;
width: 100%;
padding-left: 0;
position: absolute;
left: 0;
top: 65;
}
#navbar li {
display: table-cell;
height: 30px;
width: 16.666666667%;
line-height: 30px;
text-align: center;
border: 1px solid black;
white-space: nowrap;
background-color: #F8F8F8;
}
<html>
<head>
<title>Noah's Sports Cards</title>
<link href="home.css" rel="stylesheet" type="text/css" media="screen, tv, tty" />
</head>
<body>
<div id="name">
<h2 class="Title">Noah's Sports Cards</h2>
<h2 class="TitleShadow">Noah's Sports Cards</h2>
</div>
<ul id="navbar" usemap="#navMap">
<li>Home</li>
<li>Albums</li>
<li>Random</li>
<li>Memorbilia</li>
<li>Tools</li>
<li>About</li>
</ul>
<div>
<map id="navMap">
<area shape="rect" coords="0, 82, 227.667, 113" href="home.htm" />
<area shape="rect" coords="227.667, 82, 455.334, 113" href="albums.htm" />
<area shape="rect" coords="455.334, 82, 683.001, 113" href="random.htm" />
<area shape="rect" coords="683.001, 82, 910.668, 113" href="memorbilia.htm" />
<area shape="rect" coords="910.668, 82, 1138.335, 113" href="tools.htm" />
<area shape="rect" coords="1138.335, 82, 1366, 113" href="about.htm" />
</map>
</div>
</body>
</html>
能否請您做一個[小提琴](http://jsfiddle.net/)例如 –
爲什麼不創建一個'ul'和使用'顯示:table' –