引导轮播图片和尺寸

问题描述 投票:0回答:1

我试图表现出响应转盘。我在幻灯片水平和垂直图像(H尺寸:1400 X 935 V大小:624 X 935)。

问题出现在这个项目:https://www.luismatera.art/las-matas-via-muerta-i.html

主要的问题是,文本上升,在滑变为水平到垂直向下的时间。

我有这样的CSS代码(提供here):

.carousel-fade .carousel-item, .carousel-item img {max-height: 90vh;}

而这SRC图片:

class="d-block img-fluid"

但它不能正常工作

任何人可以帮助我始终保持文本在相同的位置? (像this

提前致谢。

html css
1个回答
1
投票

该图像高度而变化,所以要尽量还添加了min-height这种方式有变化的影像时一定的连贯性:

.carousel-fade .carousel-item, .carousel-item img {
   max-height: 90vh;
   min-height: 90vh;
}
© www.soinside.com 2019 - 2024. All rights reserved.