i want to use height of 200px for ion-slides i have put ion-slide in a div which has height of 200px but problem is it is show extra space below slider, i want to remove that space. you can see red color is extra space below image. below preview is from ios simulator
here is my slider code
<div class="header-banner">
<ion-slides class="home-slide" autoplay="3000" loop>
<ion-slide>
<img src="https://unsplash.it/400/200/?image=1080" alt="">
</ion-slide>
<ion-slide>
<img src="https://unsplash.it/400/200/?random" alt="">
</ion-slide>
<ion-slide>
<img src="https://unsplash.it/400/200/?image=976" alt="">
</ion-slide>
</ion-slides>
</div>
here is my scss
page-home {
.header-banner{
height:200px;
min-height:200px;
background:red;
}
.slide-zoom {
// height:200px;
height: 100%;
// overflow:hidden;
}
}