Skip to content

Commit 09498b9

Browse files
committed
[mediaqueries] Switch an example from the min-/max- syntax to the range context syntax
1 parent b395796 commit 09498b9

2 files changed

Lines changed: 60 additions & 39 deletions

File tree

mediaqueries/Overview.bs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -918,7 +918,7 @@ width</h3>
918918
(the part of the screen/paper where the document is rendered)
919919
widths between 400 and 700 pixels:
920920

921-
<pre>@media (min-width: 400px) and (max-width: 700px) { … }</pre>
921+
<pre>@media (400px <= min-width <= 700px) { … }</pre>
922922
</div>
923923

924924
<div class="example">

0 commit comments

Comments
 (0)