SEÇENEK 1: :focus-visible
Sözde sınıfı kullanma
:focus-visible
Sözde sınıf (dokunma veya fare tıklaması sayesinde, yani) çirkin hatlarını öldürmek ve klavye ile gezinme DEĞİLDİR kullanıcılar için düğmeleri ve çeşitli unsurları üzerinde halkalar odaklanmak için kullanılabilir.
/**
* The default focus style is likely provided by Bootstrap or the browser
* but here we override everything else with a visually appealing cross-
* browser solution that works well on all focusable page elements
* including buttons, links, inputs, textareas, and selects.
*/
*:focus {
outline: 0 !important;
box-shadow:
0 0 0 .2rem #fff, /* use site bg color to create whitespace for faux focus ring */
0 0 0 .35rem #069 !important; /* faux focus ring color */
}
/**
* Undo the above focused button styles when the element received focus
* via mouse click or touch, but not keyboard navigation.
*/
*:focus:not(:focus-visible) {
outline: 0 !important;
box-shadow: none !important;
}
Uyarı: 2020'den itibaren :focus-visible
sözde sınıf tarayıcılarda geniş çapta desteklenmemektedir . Ancak çoklu dolgunun kullanımı çok kolaydır; aşağıdaki talimatlara bakın.
SEÇENEK 2: .focus-visible
Çoklu dolguyu kullanın
Bu çözüm, yukarıda belirtilen sözde sınıf yerine normal bir CSS sınıfı kullanır ve resmi bir Javascript tabanlı çoklu dolgu olduğundan geniş tarayıcı desteğine sahiptir .
1. Adım: Javascript bağımlılıklarını HTML sayfanıza ekleyin
Not: netleme görünür çoklu dolgu, classList özelliğini desteklemeyen birkaç eski tarayıcı için ek bir çoklu dolgu gerektirir :
<!-- place this code just before the closing </html> tag -->
<script src="https://cdn.polyfill.io/v2/polyfill.js?features=Element.prototype.classList"></script>
<script src="https://unpkg.com/focus-visible"></script>
2. Adım: Stil sayfanıza aşağıdaki CSS'yi ekleyin
Aşağıda, yukarıda daha ayrıntılı olarak belgelenen CSS çözümünün değiştirilmiş bir sürümüdür.
/**
* Custom cross-browser styles for keyboard :focus overrides defaults.
*/
*:focus {
outline: 0 !important;
box-shadow:
0 0 0 .2rem #fff,
0 0 0 .35rem #069 !important;
}
/**
* Remove focus styles for non-keyboard :focus.
*/
*:focus:not(.focus-visible) {
outline: 0 !important;
box-shadow: none !important;
}
3.Adım (isteğe bağlı): gerektiğinde 'netleme görünür' sınıfını kullanın
Birisi dokunmayı tıkladığında veya kullandığında odak halkasını göstermek istediğiniz herhangi bir öğeniz varsa, focus-visible
sınıfı DOM öğesine eklemeniz yeterlidir.
<!-- This example uses Bootstrap classes to theme a button to appear like
a regular link, and then add a focus ring when the link is clicked --->
<button type="button" class="btn btn-text focus-visible">
Clicking me shows a focus box
</button>
Kaynak:
Demo: