[Fixed] Ionic+ angular : Impossible to remove outline on <p> <a> or <div>

Issue

I’m creating my application with a login page and I have my “Forgotten password ?”.

But I have already tried

and with .class, :focus {outline: none} but there is still a yellow square around my item…
I don’t have this problem with my browser, only with my android application…

<a class="pass" [routerLink]="['/forgotten-pass']">Mot de passe oublié ?</a>

Someone has a solution about this issue ?

Thank you

enter image description here

Solution

My solution :

:focus{
    outline: -webkit-focus-ring-color auto 0px;
 }

Leave a Reply

(*) Required, Your email will not be published