Jquery菜单无法正常工作

koo*_*ool 3 html css jquery

我这里有这个jquery菜单

http://jsfiddle.net/pJMva/8/

它似乎没有工作.....按钮应该在悬停时向右扩展

谢谢所有的努力

Nik*_*las 5

添加position:relative;到您的CSS:

.anim_queue_example1 a
{

    margin: 15px;
    width: 50%;
    height: 25px;
    display: -webkit-box;
    display: -moz-box;
    display: box;
    -webkit-box-align: center;
    -moz-box-align: center;
    box-align: center;

    text-decoration: none;

    font-size: 15px;
    font-weight: 700;

    background: #333;
    color: #fff;
    position:relative;

}
Run Code Online (Sandbox Code Playgroud)

示例:http://jsfiddle.net/niklasvh/pJMva/10/