Gunnar Bittersmann: Navigation Bar, div anzeigen beim klicken auf einen Link

Beitrag lesen

@@Gunnar Bittersmann

PS: TIL, dass Firefox :focus-visible nicht auf details-Elemente anwendet. 😞

Was für’n Unsinn! Der aktuelle Firefox kennt :focus-visible generell noch nicht, sondern :-moz-focusring. Und jenes wendet er auch auf details-Elemente an.

Wenn man im Codepen

:focus:not(:-moz-focusring) {
	outline: none;
}

:-moz-focusring {
	outline: thin solid blue;
}

ergänzt, ist der Rahmen durchgängig blau, nicht schwarz gepunktet.

Allerdings erscheint der Rahmen auch bei Mausbedienung, was er nicht soll. Die Implementierung von :-moz-focusring ist noch nicht so, wie sie für :focus-visible sein soll.

Der 85er Firefox (gegenwärtig Developer Edition) macht’s richtig; er unterstützt :focus-visible.

😷 LLAP

--
“When I was 5 years old, my mother always told me that happiness was the key to life. When I went to school, they asked me what I wanted to be when I grew up. I wrote down ‘happy.’ They told me I didn’t understand the assignment, and I told them they didn’t understand life.” —John Lennon