2014-04-01 67 views
0

我有這個嵌套的菜單,其中一切正常工作期望從第三層次。CSS嵌套菜單自動寬度不起作用

我的代碼,這裏的結果:http://jsfiddle.net/wvsL9/

如果將鼠標懸停在菜單:「PRODUKTER」,然後「PRIVAT」,您將看到寬度的問題不是「自動」。 我真的被困在這裏,我嘗試了很多變化。 你能找出它爲什麼不能按我想要的方式工作嗎?

在此先感謝

#menu, #menu ul { 
    margin: 0; 
    padding: 0; 
    list-style: none; 
    font-size: 0.9em; 
    font-family:'Helvetica Neue For BBC W01 Bd'; 
} 

#menu:before, 
#menu:after { 
    content: ""; 
    display: table; 
} 

#menu:after { 
    clear: both; 
} 

#menu { 
    zoom:1; 
} 

#menu li { 
    float: left; 
    display: inline-block; 
    position: relative; 
} 

#menu li:last-child { 
    border: 0; 
    -moz-box-shadow: none; 
    -webkit-box-shadow: none; 
    box-shadow: none;  
} 


#menu a { 
    display: inline-block; 
    padding: 50px 8px; 
    color: #000; 
    text-transform: uppercase; 
    text-decoration: none; 
    font-weight: bold; 
} 

#menu li:hover > a { 
    background: #000; 
    color: #fff; 
} 

#menu li.current-menu-item a{ 
    background: #000; 
    color: #FFF; 
} 

*html #menu li a:hover { /* IE6 only */ 
    color: #fafafa; 
} 

#menu ul { 
    margin: 20px 0 0 0; 
    _margin: 0; /*IE6 only*/ 
    opacity: 0; 
    visibility: hidden; 
    position: absolute; 
    width: 100%; 
    top: 120px; 
    left: 0; 
    z-index: 1;  
    background: #000; 
    -webkit-transition: all .2s ease-in-out; 
    -moz-transition: all .2s ease-in-out; 
    -ms-transition: all .2s ease-in-out; 
    -o-transition: all .2s ease-in-out; 
    transition: all .2s ease-in-out; 
} 

#menu li:hover > ul { 
    opacity: 1; 
    visibility: visible; 
    margin: 0; 
} 

#menu ul li { 
    position: static; 
    float: none; 
    display: block; 
    border: 0; 
    _line-height: 0; /*IE6 only*/ 
} 

#menu ul li:last-child { 
    -moz-box-shadow: none; 
    -webkit-box-shadow: none; 
    box-shadow: none;  
} 


#menu ul a {  
    padding-top: 10px; 
    padding-bottom: 10px; 
    _height: 10px; /*IE6 only*/ 
    display: block; 
    white-space: nowrap; 
    float: none; 
    text-transform: none; 
    color: #fff; 
} 

#menu ul a:hover { 
    background-color: #f60c0c; 
} 

#menu ul li:first-child > a { 
    -moz-border-radius: 3px 3px 0 0; 
    -webkit-border-radius: 3px 3px 0 0; 
    border-radius: 3px 3px 0 0; 
} 

#menu ul li:first-child > a:after { 
    content: ''; 
    position: absolute; 
    left: 40px; 
    top: -6px; 
} 

#menu ul ul { 
    top: 0; 
    left: 100%; 
    margin: 0 0 0 20px; 
    _margin: 0; /*IE6 only*/  
} 

#menu ul ul li{ 
    display: block; 
    width: auto; 
    float: none; 
} 

#menu ul ul li a{ 
    display: block; 
    padding: 10px 50px; 
} 

#menu ul ul li:first-child a:after { 
    left: -6px; 
    top: 50%; 
    margin-top: -6px; 
    border-left: 0; 
} 

#menu ul li:first-child a:hover:after { 
    border-bottom-color: #04acec; 
} 

#menu ul ul li:first-child a:hover:after { 
    border-right-color: #0299d3; 
    border-bottom-color: transparent; 
} 

#menu ul li:last-child > a { 
    -moz-border-radius: 0 0 3px 3px; 
    -webkit-border-radius: 0 0 3px 3px; 
    border-radius: 0 0 3px 3px; 
} 

回答

1

您可以width: auto;正確的元素上工作。只是補充一點:

#menu ul ul { 
    width: auto; 
} 

JSFiddle example

+0

以爲我已經試過了......因爲那是當然的最邏輯的答案......但現在它的作品,所以我會停止幻想,現在就開始快樂!謝謝=) – user256631