我不知何故未能來管理此菜單全寬 這是我codepen http://codepen.io/anon/pen/xwDcb我怎樣才能使全寬下拉響應菜單
我想我的下拉菜單的寬度是100%由左到對。我在做什麼錯
body {
background-color:#000;
}
.toggleMenu {
display: none;
background: #666;
padding: 10px 15px;
color: #fff;
text-transform: uppercase;
font-weight: bold;
width:100%;
}
.nav-full {
background:url(../images/nav-bg.png) no-repeat 0 0;
}
.nav-centre {
width:960px;
margin:0 auto
}
.nav {
list-style: none;
*zoom: 1;
}
.nav:before, .nav:after {
content:" ";
display: table;
}
.nav:after {
clear: both
}
.nav ul {
list-style: none;
}
我的HTML代碼
<a class="toggleMenu" href="#">Menu</a>
<div class="nav-full">
<div class="nav-centre">
<ul class="nav">
<li><a href="index.html" class="active">HOME</a>
<ul>
<li><a href="#jquery-pagescroller-2">Indus Advantage</a>
</li>
<li><a href="#jquery-pagescroller-3">Positioning and flexibility of products</a>
</li>
<li><a href="#jquery-pagescroller-4">Pipeline</a>
</li>
</ul>
</li>
<li> <a href="#">Products</a>
<ul>
<li><a href="#">Overview</a>
</li>
<li><a href="#">Exercise Physiology</a>
</li>
<li><a href="#">Manufacturing & Quality Control</a>
</li>
</ul>
</li>
<li> <a href="#">Patents & Publications</a>
<ul>
<li><a href="#jquery-pagescroller-0">Global Patenting Strategy</a>
</li>
<li><a href="#jquery-pagescroller-1">Publications</a>
</li>
</ul>
</li>
<li> <a href="#">Partnering</a>
<ul>
<li><a href="#jquery-pagescroller-0">Enquiries - Product</a>
</li>
<li><a href="#jquery-pagescroller-1">Enquiries - Business Partnering</a>
</li>
</ul>
</li>
<li> <a href="#">About Us</a>
<ul>
<li><a href="#jquery-pagescroller-0">Vision & Values</a>
</li>
<li><a href="#jquery-pagescroller-1">Conventional v/s the Indus Discovery Model</a>
</li>
</ul>
</li>
<li> <a href="#">Contact Us</a>
</li>
<li> <a href="#">Careers</a>
</li>
</ul>
</div>
</div>
我試着和它不工作 – San