CSS Responsive Layout Flashcards

1
Q

What is a breakpoint in responsive Web design?

A

the point in which a new css/media rule takes place

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

What is the advantage of using a percentage (e.g. 50%) width instead of a fixed (e.g. px) width for a “column” class in a responsive layout?

A

it allows the page to work better on multiple screen sizes

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

If you introduce CSS rules for a smaller min-width after the styles for a larger min-width in your style sheet, the CSS rules for the smaller min-width will “win”. Why is that?

A

css rules are apply in source order of writing so the smaller rule still fits on the bigger screen

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