Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums CSS [Solved] error with the dotted line Reply To: [Solved] error with the dotted line

#208419
Alen
Participant

@m3llawi

a {}
a:visited {}
a:hover {}
a:active {}
a:focus {}

Link states are pretty self explanatory, the one you need is a:focus. In your code you have:

a:focus,
*:focus {
  noFocusLine: expression(this.onFocus=this.blur());
}

Add outline: none;.