Reputation: 1
please correct me if I am asking this wrong,
here is a little css tab navigation, the links will not focus when controlling the tabs boxes, but they focus normally. for example.
this will not focus.
<a href="#one" class="won">doesn't focus</a>
this one will focus
<a href="#">does focus</a>
here is the full example I am struggling with. www.blackbeltweb.net/focus.html
Upvotes: 0
Views: 5846
Reputation: 6310
You have an outline:none
on the .won
class. Hence the focus is not highlighted with the dotted outline like it would be by default.
Upvotes: 2