Im creating an ionic app based on Angular (first time) I created a card with anchors that send me to other cards in the same page.
<ion-card>
<ion-item class="activated">
<ion-icon name="camera" slot="start"></ion-icon>
<ion-label routerLink= "#visit">Pics</ion-label>
</ion-item>
</ion-card>
This anchor should send me to a card with the same id="visit" but it's not working .
<ion-card id="visit">
<ion-card-header>
<ion-card-title >
<ion-icon style="padding-top:5px" name="camera" ></ion-icon>
Pictures
</ion-card-title>
</ion-card-header>
</ion-card>
I checked google but all result that I get are about other issues.