Skip to content

Instantly share code, notes, and snippets.

@juliemoynat
Created September 21, 2021 10:47
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save juliemoynat/c6e0baf08b6e56845f9bac29e31104ab to your computer and use it in GitHub Desktop.
Save juliemoynat/c6e0baf08b6e56845f9bac29e31104ab to your computer and use it in GitHub Desktop.
Code de test du critère 10.12 du RGAA 4.1 ou 1.4.12 des WCAG 2.1
/**
* Code pour tester le critère 10.12 du RGAA (https://www.numerique.gouv.fr/publications/rgaa-accessibilite/methode-rgaa/criteres/#crit-10-12)
* correspondant au critère 1.4.12 des WCAG (https://www.w3.org/WAI/WCAG21/Understanding/text-spacing.html)
* à propos de l'espacement des caractères
*/
* {
line-height: 1.5 !important;
letter-spacing: 0.12em !important;
word-spacing: 0.16em !important;
}
p {
margin-bottom: 2em !important;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment