I have an ionic list, and I want that between each ion-item there is a space of 15 px, transparent color, so as to "see the bottom" of the screen in the space between the ion-items. I have tried all the ways, but it does not work, I will agreadeceré if you can help me. Thank you very much!
<ion-list >
<ion-item ng-repeat="respuesta in respuestas"
item="respuesta" ng-click="clicker(respuesta)"
style="background: violet; border: 15px none transparent !important;">
<h5 class="item-text-wrap" style="color: white">{{respuesta.detalle}}</h5>
</ion-item>
</ion-list>
If I put color instead of transparent, it works.