我希望.nivo-controlNav的宽度自动适合.nivo-controlNav a的宽度+边距

码:

.nivo-controlNav {
    margin: 480px auto 0;
    overflow: hidden;
    width: 200px;
}
.nivo-controlNav a {
    background: url(images/bullets.png) no-repeat;
    border: 0;
    float: left;
    text-indent: -9999px;
    margin-right: 3px;
    width: 22px;
    height: 22px;
}

最佳答案

我不确定这是否是您的要求,但是您可以使用jquery outerWidth()

$(document).ready(function(){
 var customWidth = $('.nivo-controlNav a').outerWidth(true);
 $('.nivo-controlNav').css("width",customWidth);
});

10-07 21:33