gpt4 book ai didi

css - 如何定义(使用 php 或 jquery)div 的宽度以适应内部 anchor 标记的宽度 + 边距?

转载 作者:行者123 更新时间:2023-11-28 14:49:36 24 4
gpt4 key购买 nike

我想让 .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);
});

关于css - 如何定义(使用 php 或 jquery)div 的宽度以适应内部 anchor 标记的宽度 + 边距?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4786177/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com