2

我在http://www.stevemoorecpa.dreamhosters.com/有一个水平下拉 CSS 菜单

我的问题是菜单宽度超出了网站的包装,我无法隐藏它。

问题示例

你如何防止元素超出站点包装器?这是包装器的代码...

#wrapperSkm {
    border-left-style: solid;
    border-right-style:solid;
    border-width: 2px;
    border-color: transparent;
    -moz-box-shadow: 0px 0px 25px #c3c3c3;
    -webkit-box-shadow: 0px 0px 25px #c3c3c3;
    box-shadow: 0px 0px 25px #c3c3c3;
    width:1069px;
    overflow: hidden;
    padding: 0 0px 0 0px;
    margin-left: auto;
    margin-right: auto;
    background:url(images/line1Right.png) repeat-x right 134px;
}

这是水平子菜单导航的代码

#access ul ul {
    display: none;
    float: right;
    margin: 0;
    position: absolute;
    top: 181px;
    left: 0;
    width:100%;
    background:#fff url(images/line1Nav.png) repeat-x bottom;
    z-index: 99999;
    text-align:center;
}

我整天都在工作,没有什么能让菜单隐藏它在主站点包装器之外的溢出。

感谢所有帮助。

4

1 回答 1

5

嗨,现在添加position relative您的wrapperSkm ID

像这样

#wrapperSkm{
position: relative;
}

结果是

在此处输入图像描述

于 2012-10-31T04:03:13.440 回答