我只是想添加一个链接到我网站上各个页面的侧边菜单。我想使用用户点击导航的图像按钮或简单的href。我想我需要以某种方式使用div?
由于
答案 0 :(得分:6)
您可以使用div
元素并使用CSS向左浮动。
HTML:
<div id="nav">
<ul>
<li><a href="http://example.com/page2">A Link</a></li>
<li><a href="http://example.com/page3">Another Link</a></li>
</ul>
</div>
<div id="content">
<p> Here's some stuff </p>
</div>
CSS:
#nav {
width: 20%;
float: left;
background-color: gray;
}
#content {
width: 80%;
}
我还会在HTML Dog处浏览HTML和CSS教程。它会让你的生活变得更加轻松。
答案 1 :(得分:1)
Listamatic有how to style a list of links
的各种示例答案 2 :(得分:0)
HTML:
<!Doctype html>
<html projectReviver="leftmenu.html">
<head>
<title>My Left Menu</title>
<link rel="StyleSheet" href="design.css" type="text/css" />
<!--[if IE]>
<script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
</head>
<body>
<nav>
<div id="main">
<ul>
<li><a href="page.html">First page</a></li>
<li><a href="page2.html">2<sup>nd</sup>page</a></li>
</ul>
</div>
</nav>
</body>
</html>
design.css:
#mainu ul {
list-style: none;
background-color: red;
}
#nav {
width: 20%;
float: left;
background-color: red;
}
#content {
list-style: none;
}