,可以使用以下方法:
.container {
display: flex;
justify-content: space-between;
}
.card {
flex: 1;
height: 200px; /* 设置卡片的高度 */
}
在上面的代码中,.container
是包含卡片的父容器,使用display: flex
将其设置为Flexbox布局。.card
是卡片的类名,使用flex: 1
将卡片的宽度平均分配,并且设置height
属性为相同的值,例如200px
。
.container {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
grid-gap: 10px;
}
.card {
height: 200px; /* 设置卡片的高度 */
}
在上面的代码中,.container
是包含卡片的父容器,使用display: grid
将其设置为Grid布局。grid-template-columns
属性设置了卡片的列数和宽度,repeat(auto-fit, minmax(200px, 1fr))
表示自动适应容器宽度,每列的最小宽度为200px
,每列的最大宽度为平均分配剩余空间。grid-gap
属性设置了卡片之间的间距。.card
是卡片的类名,设置height
属性为相同的值,例如200px
。
const cards = document.querySelectorAll('.card');
let maxHeight = 0;
cards.forEach(card => {
const cardHeight = card.offsetHeight;
if (cardHeight > maxHeight) {
maxHeight = cardHeight;
}
});
cards.forEach(card => {
card.style.height = `${maxHeight}px`;
});
在上面的代码中,首先使用document.querySelectorAll('.card')
获取所有的卡片元素,然后遍历每个卡片,获取其高度并与maxHeight
比较,找到最大的高度。最后再次遍历每个卡片,将其高度设置为maxHeight
。
以上是为所有水平布局的卡片设置相同高度的方法,可以根据具体情况选择适合的方法来实现。
领取专属 10元无门槛券
手把手带您无忧上云