簡體   English   中英

下拉菜單都向左對齊

[英]Dropdown menus are all aligned to left

我通過CSS創建了一個下拉菜單,但奇怪的是所有下拉菜單都向左對齊。 我希望所有的下拉菜單都將出現在其父菜單下。

HTML如下:

<div id="menu">
        <ul>
          <li ng-class="{selected: $index==currPage}" ng-repeat="page in data.pages" class="ng-scope selected">
                <a href="" ng-click="goToPage($index)" class="ng-binding">Introduction</a>
                <ul>
                    <!-- ngRepeat: smenu in data.subMenu[$index].list --><li ng-class="{$index==currMenu}" ng-repeat="smenu in data.subMenu[$index].list" class="ng-scope">
                        <a href="" ng-click="goToPage($index)" class="ng-binding">Profile</a>

                    </li><li ng-class="{$index==currMenu}" ng-repeat="smenu in data.subMenu[$index].list" class="ng-scope">
                        <a href="" ng-click="goToPage($index)" class="ng-binding">Background</a>

                    </li><li ng-class="{$index==currMenu}" ng-repeat="smenu in data.subMenu[$index].list" class="ng-scope">
                        <a href="" ng-click="goToPage($index)" class="ng-binding">What is KAM</a>

                    </li>
                </ul>
            </li>
            ...
    </div>

以下是CSS:

#menu {
    /*border-bottom:4px seagreen solid;*/
    background-color: #2d394d;

    list-style:none;
}

#menu ul {
    list-style: none;
}

#menu ul li {
    display: inline-block;
    float: none;
    /*width: 20%;*/
}


#menu ul li a{
    font-size: 10pt;
    padding:12px 24px 12px 24px;
    /*border-right:1px white solid;*/
    display:block;
    text-decoration: none;
    text-align: center;
    color:#fff;
    text-transform: uppercase;
}

#menu ul li a:hover{
}

#menu ul li.selected a {
    background-color: #1b86c2;
    color:#fff;
}


/* DropDown Menus */

#menu ul ul{
    background:#fff; /* Adding a background makes the dropdown work properly in IE7+. Make this as close to your page's background as possible (i.e. white page == white background). */
    background:rgba(255,255,255,0); /* But! Let's make the background fully transparent where we can, we don't actually want to see it if we can help it... */
    list-style:none;
    position:absolute;
    left:-9999px; /* Hide off-screen when not needed (this is more accessible than display:none;) */
}
#menu ul li ul li{
    padding-top:1px; /* Introducing a padding between the li and the a give the illusion spaced items */
    float:none;
    display: block;
}
#nav ul ul a{
    white-space:nowrap; /* Stop text wrapping and creating multi-line dropdown items */
}
#menu li:hover ul{ /* Display the dropdown on hover */
    left:0; /* Bring back on-screen when needed */
}
#menu li:hover a{ /* These create persistent hover states, meaning the top-most link stays 'hovered' even when your cursor has moved down the list. */
    background:#1b86c2;
    text-decoration:underline;
}
#menu li:hover ul a{ /* The persistent hover state does however create a global style for links even before they're hovered. Here we undo these effects. */
    text-decoration:none;
}
#menu li:hover ul li a:hover{ /* Here we define the most explicit hover states--what happens when you hover each individual link. */
    background:#333;
}

您可以在此處看到顯示該圖片的圖片(圖片中顯示了“案例”的下拉列表,該圖片應該在“案例”下方,但是它已向左移動。“簡介”子菜單也顯示在同一位置):-

在此處輸入圖片說明

嘗試添加#menu ul li {position: relative;}

更正:

仔細觀察后,我的最后答案不太正確。 這可能不是修復它的最佳方法。 但這是一種方法( 或者無論如何要把它放在球場上 )。

在CSS中執行以下操作:

#menu {
    /*border-bottom:4px seagreen solid;*/
    background-color: #2d394d;
    height:40px;
    list-style:none;
}

#menu ul li ul{
    position:relative;
}

這是一個演示:

http://jsfiddle.net/2mtt8/1/

這是因為left:0位置和父li的位置默認情況下是static的。 Yo可以通過將其標記為相對來修復它,以便子ul的left:0相對於父li。

#menu ul li {
    display: inline-block;
    float: none;
    /*width: 20%;*/
    position:relative; /*Add this*/
}

#menu li:hover ul{ /* Display the dropdown on hover */
     /* Bring back on-screen when needed */
    left:0;
    padding:0; /*Add this if you are not using any reset*/
}

小提琴

看來您的每個下拉列表都絕對位於0px位置:

left:0; /* Bring back on-screen when needed */

我建議將每個相對於其父項。 您可能會考慮使用display:none隱藏下拉菜單,而不是將其放置在屏幕之外。

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM