gpt4 book ai didi

css - 如何将一些像素添加到div的当前高度

转载 作者:技术小花猫 更新时间:2023-10-29 11:45:12 26 4
gpt4 key购买 nike

我想提前从 auto 中增加要渲染的 div 的高度 10px。在 CSS 中,我将 div 的高度设置为自动

样式:

div {
height: auto;
}

但我想要这样:

 div {
height: auto + 10px;
}

最佳答案

使用填充。

 div {
height: auto;
padding-bottom: 10px;
}

 div {
height: auto;
padding-top: 10px;
}

 div {
height: auto;
padding-top: 5px;
padding-bottom: 5px;
}

如果这不是您想要的,那么将 jQuery 与 css 一起添加,如下所示:CSS:

 div#auto10 {
height: auto;
}

JavaScript:

$(document).ready(function(){
$('#auto10').height($('#auto10').height() + 10);
});

关于css - 如何将一些像素添加到div的当前高度,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18159487/

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