We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3f78924 commit b68e99aCopy full SHA for b68e99a
1 file changed
css-values/Overview.bs
@@ -1830,14 +1830,14 @@ Toggling Between Values: ''toggle()''</h3>
1830
<div class="example">
1831
For example, the following shorthand declaration:
1832
1833
- <pre>margin: toggle(1px 2px, 3px 4px, 1px 5px);</pre>
+ <pre>margin: toggle(1px 2px, 4px, 1px 5px 3px);</pre>
1834
1835
is equivalent to the following longhand declarations:
1836
1837
<pre>
1838
- margin-top: toggle(1px, 3px, 1px);
+ margin-top: toggle(1px, 4px, 1px);
1839
margin-right: toggle(2px, 4px, 5px);
1840
- margin-bottom: toggle(1px, 3px, 1px);
+ margin-bottom: toggle(1px, 4px, 3px);
1841
margin-left: toggle(2px, 4px, 5px);
1842
</pre>
1843
0 commit comments