RESPONSIVE Flashcards

1
Q

What is Responsive web development?

A

Responsive web design is about using HTML and CSS to automatically resize a web. It’s also about making a website look good on all devices (laptops, desktops, phones and tablets.)

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

What is viewport?

A

The viewport is the users visible area of a web page,

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

What does <meta></meta> do?

A

It gives the browser instructions on how to control the pages dimensions and scaling.

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

Describe what width=device-width does?

A

This part sets the width of the page to follow the screen-width of the device.

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

Describe what initial-scale=1.0 does

A

This part sets the initial zoom level when the page is first loaded by the browser

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

What are rules to follow for the size content to the viewport?

A
  1. DO NOT use large fixed width elements.
  2. DO NOT let the content rely on a particular viewport width to render well.
  3. USE CSS media queries to apply different styling for small and large screens
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

If the browser is 600px or smaller what will happen?

A

The background colour will be light blue.

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

Why do all elements have the box-sizing property set to border-box?

A

It makes sure that the padding and border are included in the total width and height of the elements.

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

What is the typical break point for extra small devices? (Phones)

A

600px and down

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

What is the typical break point for small devices? (Portrait tablets and large phones?)

A

600px and up

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

What is the typical break point for medium devices? (Landscape tablets)

A

768px and up

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

What is the typical break point for large devices? (Laptops/desktops)

A

992px and up

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

What is the typical break point for extra large devices? (Large laptops and desktops)

A

1200px and up

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

What is grid-view?

A

When a page is divided into columns. It makes it easier to place elements on the page.

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