diff --git a/techniques/failures/F94.html b/techniques/failures/F94.html index 3c47d95a74..ca87adc267 100644 --- a/techniques/failures/F94.html +++ b/techniques/failures/F94.html @@ -20,35 +20,31 @@
The objective of this technique is to document the failure of text to re-scale when viewport units are used on text. As these units are relative to the viewport, it means they cannot be resized by zooming or adjusting text-size.
There are various methods to increase and decrease the size of text and other content, but viewport units applied to text (generally via font-size
in CSS) prevent most available methods. Attempts to use browser controls to zoom or adjust text-size will not work. Only methods that completely override the CSS will work, and those could cause other issues such as layouts collapsing or text overlapping.
Some uses of viewport units may not prevent text-size adjustments, but if they are used as the primary method for defining text-size, they are likely to cause a failure of Success Criterion 1.4.4.
- -If media queries were used to adjust the size of text or unit of measure at different screen sizes, it may not be a failure of Resize Text. On-page controls provided by the author are also a way of passing the resize text success criteria.
+If media queries were used to adjust the size of text or unit of measure at different screen sizes, it may not be a failure of Resize Text. On-page controls provided by the author are also a way of passing the resize text success criteria.
The following CSS and HTML snippet uses VW units to size the text.
-/* CSS */
+/* CSS */
.callout {
font-size:1vw;
}
<p class="callout">Text that scales by viewport units</p>
-
+
In a desktop browser with a resizable window: