henry albert
henry albert

Reputation: 1

focus not working on tab navigation

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

Answers (2)

sym3tri
sym3tri

Reputation: 3823

Works for me in Chrome. Maybe you can try setting the tabindex

Upvotes: 0

fmalina
fmalina

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

Related Questions