0

我正在使用 wordpress 3.4.2 的二十一主题。默认主题菜单在悬停时显示下拉菜单。我想做的是显示当前菜单项的子菜单。到目前为止,我所取得的成就是通过设置 css 属性来显示子菜单display:visible

此链接http://www.gq.com显示了我正在尝试实现的示例。

相关的CSS样式如下:

#access {
    clear: both;
    display: block;
    float: left;
    margin: 0px auto 15px;
    width: 100%;
    height: 36px;
}

#access ul {
    font-size: 13px;
    list-style: none;
    margin: 0 0 0 -0.8125em;
    padding-left: 0;
}

#access li {
    float: left;
    position: relative;
}

#access a {
    display: block;
    line-height: 2.8em;
    padding: 0 1.2125em;
}

#access ul ul {
    display: none;
    float: left;
    margin: 0;
    position: absolute;
    top: 2.9em;
    left: 0;
    width: 188px;
    z-index: 99999;
}

#access ul ul ul {
    left: 100%;
    top: 0;
}

#access ul ul a {
    border-bottom: 1px dotted #ddd;
    color: #444;
    font-size: 13px;
    font-weight: normal;
    height: auto;
    line-height: 1.4em;
    padding: 10px 10px;
    width: 168px;
}

#access ul li:hover>ul {
    display: block;
}
4

0 回答 0