CSS导航未在父级下对齐

时间:2012-09-27 00:57:07

标签: css nav

我的导航栏出现轻微问题,我无法修复。当我希望它在父项下浮动时,child1级别向左浮动。

这是我的小提琴http://jsfiddle.net/rrdsV/

有两个选项的导航是“页面样式”和“第三方插件”

提前谢谢! 乔治

1 个答案:

答案 0 :(得分:2)

只需将position: relative应用于您的父母 - DEMO

即可
#navcontainer ul li {
    display: inline;
    padding-right: 15px;
    position: relative;
    overflow: visible; /* to satisfy 1.8% of IE7 users */
}