I found that if there is a a link in the page which does not link to a new page,then when user click it,there will be a dotted line around the element,it will o
a
Try with !important in css.
!important
css
a { outline:none !important; } // it is `very important` that there is `no` `outline` for the `anchor` tag. Thanks!
Removing outline will harm accessibility of a website.Therefore i just leave that there but make it invisible.
outline
a { outline: transparent; }