[Ionic V4]How to remove last-child bottom border of ion-item in Ionic4

People who use slot in front of item, --inner-border-width can solve your problem.

ion-item:last-child {
  --inner-border-width: 0;
}
15 Likes