Skip to content

Commit dd82ed3

Browse files
Fix Typo
1 parent 44de0cb commit dd82ed3

File tree

1 file changed

+1
-1
lines changed
  • src/pages/2022-11/css-range-media-queries

1 file changed

+1
-1
lines changed

src/pages/2022-11/css-range-media-queries/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ Let's take the above media queries and convert them to the new range syntax.
4343
/* Between 700px and 1000px */
4444
@media (700px <= width <= 1000px) {}
4545
```
46-
This new syntax adds less then and greater than syntax which makes writing media queries easier and more importantly makes them so much easier to read. I especially love the ability to do a range where the width is between two values. Below are all the new operators that are added with this update:
46+
This new syntax adds less than and greater than syntax which makes writing media queries easier and more importantly makes them so much easier to read. I especially love the ability to do a range where the width is between two values. Below are all the new operators that are added with this update:
4747

4848
* `<`
4949
* `<=`

0 commit comments

Comments
 (0)