gpt4 book ai didi

html - Bootstrap 如何修复动态列表数据

转载 作者:太空宇宙 更新时间:2023-11-04 03:08:21 25 4
gpt4 key购买 nike

我已经在我的页面中显示了列表项,但我无法显示它们。当我在每个元素中有不同的内容时,它不会匹配。我应该怎么办?我想移动左侧的最后一项并获得空间。

这是我的代码:

.single-profile-top, .single-profile-bottom {
border: 1px solid #ddd;
padding: 15px;
position: relative;
margin-bottom: 40px;
}

最佳答案

Jquery 可用于使所有列表数据具有相同的高度。

引用答案link

function setEqualHeight(selector, triggerContinusly) {
var elements = $(selector)
elements.css("height", "auto")
var max = Number.NEGATIVE_INFINITY;

$.each(elements, function(index, item) {
if ($(item).height() > max) {
max = $(item).height()
}
})

$(selector).css("height", max + "px")

if (!!triggerContinusly) {
$(document).on("input", selector, function() {
setEqualHeight(selector, false)
})

$(window).resize(function() {
setEqualHeight(selector, false)
})
}


}
setEqualHeight(".sameh", true)

关于html - Bootstrap 如何修复动态列表数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30021875/

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