css|菜單|建立|導航
原創教程,轉載請註明出處:網頁教學網
用CSS建立導覽功能表的兩個例子
現在使用CSS+XHTML製作網頁,通常網頁需要導航,導航通常有兩種:水平和垂直。
1.垂直導航的例子:(單擊此處瀏覽示範效果)
(1)CSS檔案:(儲存為vertical.css)
h1, h2
{
font: normal 200%/100% Garamond, "宋體", serif;
margin-bottom: 0px;
color: #630;
background: transparent;
}
h2
{
font-size: 150%;
}
#header
{
padding: 5px;
border-bottom: #ccc 1px solid;
}
#main
{
margin-left: 210px;
padding: 5px;
}
#footer
{
clear: both;
padding: 5px;
border-top: #ccc 1px solid;
}
#navigation
{
float: left;
width: 200px;
padding: 5px;
}
#navigation ul
{
margin-left: 0;
padding-left: 0;
list-style-type: none;
font-family: 宋體
}
#navigation a, li#current
{
display: block;
width: 180px;
text-decoration: none;
padding: 5px;
border-bottom: #fff solid 1px;
background-color: #630;
color: #fff;
}
#navigation a:hover, #navigation a:active, #navigation a:focus, li#current
{
background-color: #c90;
color: #000;
}
(2)完整的HTML檔案:(儲存為vertical.htm)
<!DOCTYPE html
PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
<head>
<title>Vertical Navigation</title>
<meta http-equiv="Content-Type" content="application/xhtml+xml; charset=gb2312" />
<link href="vertical.css" rel="stylesheet" type="text/css" /> </head>
<body>
<div id="header">
<h1>網頁教學網用CSS製作的垂直導覽功能表</h1>
</div>
<div id="navigation">
<ul>
<li><a href="#start" tabindex="1">跳過導航</a></li>
<li id="current">本站首頁</li>
<li><a href="/jianzhan" tabindex="3">建站指南</a></li>
<li><a href="/news/index.htm" tabindex="4">站內新聞 </a></li>
<li><a href="/web" tabindex="5">網頁製作</a></li>
<li><a href="/program" tabindex="6">網路編程</a></li>
</ul>
</div>
<div id="main">
<h2 id="start">首頁</h2>
<p>
聲明:1) 本站不保證所提供軟體或教程的完整性和安全性。2) 請在使用前查毒,下載相應閱 讀器。4) 轉載本站提供的資源請勿刪除本說明檔案。5) 本站提供的程式均為網上搜集,如果 該程式涉及或侵害到您的著作權請立即寫信通知我們。6) 本站提供軟體只可供研究使用,請在 下載24小時內刪除, 切勿用於商業用途,由此引起一切後果與本站無關。 本站提供服務項目 為您建站網上商城英漢翻譯廣告投放程式開發素材出售註:推薦使用:WinRAR V3.0以上版本 解壓本站軟體解壓密碼:www.webjx.com 網頁教學網: http://www.webjx.com論 壇: http://www.webjx.com/bbs </p>
</div>
<div id="footer">
<p>
Copyright © 2005 webjx.com. All Rights Reserved.
</p>
</div>
</body>
</html>
2.水平導航的例子:(單擊此處瀏覽示範效果)
(1)CSS檔案:(儲存為horizontal.css)
h1, h2
{
font: normal 200%/100% Garamond, "宋體", serif;
margin-bottom: 0px;
color: #630;
background: transparent;
}
h2
{
font-size: 150%;
}
#header
{
padding: 5px;
border-bottom: #ccc 1px solid;
}
#main
{
margin-left: 210px;
padding: 5px;
}
#footer
{
clear: both;
padding: 5px;
border-top: #ccc 1px solid;
}
#navigation
{
float: left;
width: 200px;
padding: 5px;
}
#navigation ul
{
margin-left: 0;
padding-left: 0;
list-style-type: none;
font-family: 宋體
}
#navigation a, li#current
{
display: block;
width: 180px;
text-decoration: none;
padding: 5px;
border-bottom: #fff solid 1px;
background-color: #630;
color: #fff;
}
#navigation a:hover, #navigation a:active, #navigation a:focus, li#current
{
background-color: #c90;
color: #000;
}
(2)完整的HTML檔案:(儲存為horizontal.htm)
<!DOCTYPE html
PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
<head>
<title>Vertical Navigation</title>
<meta http-equiv="Content-Type" content="application/xhtml+xml; charset=gb2312" />
<link href="horizontal.css" rel="stylesheet" type="text/css" /> </head>
<body>
<div id="navigation">
<ul>
<li><a href="#start" tabindex="1">跳過導航</a></li>
<li id="current">本站首頁</li>
<li><a href="/jianzhan" tabindex="3">建站指南</a></li>
<li><a href="/news/index.htm" tabindex="4">站內新聞 </a></li>
<li><a href="/web" tabindex="5">網頁製作</a></li>
<li><a href="/program" tabindex="6">網路編程</a></li>
</ul>
</div>
<h2 id="start">首頁</h2>
<p>
聲明:1) 本站不保證所提供軟體或教程的完整性和安全性。2) 請在使用前查毒,下載相應閱 讀器。4) 轉載本站提供的資源請勿刪除本說明檔案。5) 本站提供的程式均為網上搜集,如果 該程式涉及或侵害到您的著作權請立即寫信通知我們。6) 本站提供軟體只可供研究使用,請在 下載24小時內刪除, 切勿用於商業用途,由此引起一切後果與本站無關。 本站提供服務項目 為您建站網上商城英漢翻譯廣告投放程式開發素材出售註:推薦使用:WinRAR V3.0以上版本 解壓本站軟體解壓密碼:www.webjx.com 網頁教學網: http://www.webjx.com論 壇: http://www.webjx.com/bbs </p>
</body>
</html>
通過以上兩個例子希望您對CSS有更深入的瞭解!