我想为我的应用程序创建导航栏

时间:2016-03-31 07:33:02

标签: html css menu navigation

我想实现这样的目标......

Here is how it should look

注意:将动态添加更多子元素(即第二个和第三个)元素。 'first'是root元素只出现一次。 请建议我怎么做?另外它应该是可折叠的。

2 个答案:

答案 0 :(得分:1)

我认为此链接对您有用

http://mackpexton.com/projects/TreeMenu/index.htm

答案 1 :(得分:0)

请添加一些程序代码 一些示例菜单



<style>
#header {
    background-color:black;
    color:white;
    text-align:center;
    padding:5px;
}
#nav {
    line-height:30px;
    background-color:#eeeeee;
    height:300px;
    width:100px;
    float:left;
    padding:5px;	      
}
#section {
    width:350px;
    float:left;
    padding:10px;	 	 
}
#footer {
    background-color:black;
    color:white;
    clear:both;
    text-align:center;
   padding:5px;	 	 
}
</style>
&#13;
<!DOCTYPE html>
<html>
<head>

</head>
<body>

<div id="header">
<h1>City Gallery</h1>
</div>

<div id="nav">
London<br>
Paris<br>
Tokyo
</div>

<div id="section">
<h2>London</h2>
<p>asd</p>
<p>type text </p>
</div>

  

</body>
</html>
&#13;
&#13;
&#13;