#menu ul ul ul {
position: absolute;
top: 0;
left: 100%; /* everything goes to opposite direction why?? It doesnt make sense */
width: 100%;
}
这是CSS中的简单dropDown(我正在学习CSS)...看看我在JS Bin中隐藏块here的代码。
答案 0 :(得分:1)
您的代码:
left: 100%; /* everything goes to opposite direction why?? :( */
更改为:
left: -100%;
此外,这适用于Chrome。我注意到你的菜单代码在IE9中不起作用。