Skip to content

Commit

Permalink
and media type to not
Browse files Browse the repository at this point in the history
  • Loading branch information
estelle authored Jan 25, 2024
1 parent 0e21d5f commit f947f78
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions files/en-us/web/css/@media/scan/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,22 +42,22 @@ p {
border: solid;
}

@media (scan: interlace) {
@media screen and (scan: interlace) {
p {
background: #f4ae8a;
}
}
@media (scan: progressive) {
@media screen and (scan: progressive) {
p {
text-decoration: underline;
}
}
@media not (scan: progressive) {
@media not screen and (scan: progressive) {
p {
border-style: dashed;
}
}
@media not (scan: interlaced) {
@media not screen and (scan: interlaced) {
p {
color: purple;
}
Expand Down

0 comments on commit f947f78

Please sign in to comment.