Change ion-slide content from middle to top

I was trying out the <ion-slide> component and it automatically puts all the content in the middle of the page. I was wondering if its possible for ion-slide to not be centered in the middle of the page.

2 Likes

change the height of “slide-zoom” class to 100%

.slide-zoom {
height: 100%;
}

5 Likes

This worked for me. Thanks!