如何在 amp-carousel 中将图像居中?

How to center an image in an amp-carousel?

有一个 amp-carousel 和几个 amp-img

看这里: https://codepen.io/jaygray/pen/bLXwax

每个 amp-img 显示在 slide 中。

amp-img 是一个 SVG。

每个 amp-img 都可以在 amp-lightbox 中查看(单击图像)。

轮播和灯箱按预期工作。

但我无法将 amp-img 置于 slide 的中心。

如何使 amp-imgamp-carousel slide 中居中?

<amp-img layout='fixed'>更改为<amp-img layout='fill'>

添加CSS.slide > .inner-image-wrap > amp-img > img{ object-fit: contain; }

Working Url