Media Queries Flashcards

1
Q

What is a general media query

A

@media only screen and (max-width:40px) {code}

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

Formatting for a printer

A

@media only print {code}

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

Formatting for a screen

A

@media only screen {code}

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

Formatting for a max width of 50 on a screen

A

@media only screen and (max-width:50) {code}

How well did you know this?
1
Not at all
2
3
4
5
Perfectly