How can I remove the separator <ion-item>? I have the following code to display 4 elements per line:
<ion-row ion-list>
<ion-col width-25 *ngFor="let player of players">
<ion-item color="dark">
<ion-avatar item-left>
<img [src]="photo" class="img img-circle"/>
</ion-avatar>
{{user.name}}
</ion-item>
</ion-col>
</ion-row>
and the output shows 4 images per line, as excluded, but each image has a white separator below it. I do not want a divisor.
I tried to install style="border:none", but he did not.
source
share