有人可以解释这个CSS代码吗?

时间:2011-08-11 21:49:21

标签: css css-float

#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的代码。

1 个答案:

答案 0 :(得分:1)

您的代码:

left: 100%; /* everything goes to opposite direction why?? :( */

更改为:

left: -100%;

此外,这适用于Chrome。我注意到你的菜单代码在IE9中不起作用。