[] lets you use the :focus-visible
pseudo-class in CSS,
following the [Selectors Level 4 specification].
To use this feature you need to do two things :
- add the PostCSS plugin that transforms the selector into a class or attribute
- add the [focus-visible polyfill] that sets the attribute or class on elements in a browser
```css
<example.css>
/* becomes */
<example.expect.css>
[PostCSS Focus Visible] duplicates rules using the :focus-visible
pseudo-class
with a .focus-visible
class selector, the same selector used by the
[focus-visible polyfill].
The preserve
option determines whether the original notation
is preserved. By default, it is preserved.
<exportName>({ preserve: false })
<example.css>
/* becomes */
<example.preserve-false.expect.css>
The replaceWith
option defines the selector to replace :focus-visible
. By
default, the replacement selector is .focus-visible
.
<exportName>({ replaceWith: '[data-focus-visible-added]' })
<example.css>
/* becomes */
<example.preserve-true.expect.css>
Note that if you want to keep using [focus-visible polyfill], the only
acceptable value would be [data-focus-visible-added]
,
given that the polyfill does not support arbitrary values.
The disablePolyfillReadyClass
option determines if selectors are prefixed with an indicator class.
This class is only set on your document if the polyfill loads and is needed.
By default this option is false
.
Set this to true
to prevent the class from being added.
<exportName>({ disablePolyfillReadyClass: true })
<example.css>
/* becomes */
<example.disable-polyfill-ready-class.expect.css>