General - Layout methods and responsive design Flashcards

1
Q

Q: What HTML layout methods are now discouraged?

A

A: Tables and Frames (for layout purposes)

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

Q: What is CSS Grid used for?

A

A: Creating flexible, responsive page layouts using rows and columns.

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

Q: What are media queries?

A

A: CSS techniques that apply styles based on screen size or device type.`

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

Q: Give an example of a media query.

A

A: @media (max-width: 600px) { body { font-size: 14px; } }

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