Use this CSS to test the WCAG 2.1 SC 1.4.12 "Text Spacing" requirement. See: https://www.w3.org/WAI/WCAG21/Understanding/text-spacing.html
WCAG SC 1.4.12 Text Spacing by pfoxio
Details
Authorpfoxio
LicenseNo License
CategoryApplies to any site that you want to test
Created
Updated
Size479 B
Statistics
Learn how we calculate statistics in the FAQ.
Failed to fetch stats.
Description
Notes
Userstyle doesn't have notes.Source code
/* ==UserStyle==
@name SC1.4.12
@namespace github.com/openstyles/stylus
@version 1.0.0
@description Use this CSS to test the WCAG 2.1 SC 1.4.12 "Text Spacing" requirement
@author Patrick Fox
==/UserStyle== */
@-moz-document regexp("^\\w+-extension://[^/]+/manage.*") {
* {
line-height: 1.5em !important;
letter-spacing: 0.12em !important;
word-spacing: 0.16em !important;
}
p {
margin-bottom: 2em !important;
}
}