bootstrap Flashcards

(21 cards)

1
Q

responsive web design

A

makes your web page look good and have the same user experience on all devices

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

RWD uses only

A

HTML and CSS to resize, hide, shrink, enlarge, or move the content to make a web page look good

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

RWD is a ______ alternative to ______

A

cost-effective, developing mobile applications separately

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

3 RWD solutions

A

viewport, css media queries, grid systems

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

viewport

A

user’s visible area of a web page

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

viewport varies depending on

A

size of the device screen

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

by including the <meta></meta> viewport element in your web page,

A

the browser will automatically set the width of the page to the screen-width of the device

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

meta viewport element

A

<meta></meta>

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

potential problems that may cause bad UX

A
  • an element can be wider than the viewport
  • no guarantee that content will look good on all screens
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

CSS media queries

A

allow you to decide what a page should look like depending on the media type being used to display the page

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

a media type can be

A

screen, print, handheld, braille, and speech

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

css styles that apply to all media types is declared by

A

@media all

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

disadvantages of css media queries

A
  • lengthy code
  • can’t enumerate all possible devices
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

example of css @ media all

A

<style>

     @media all
     {
          body{}
          h1{}
     }
</style>

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

grid system

A

layout methodology where rows and columns are defined using relative units such as percentages, rather than fixed units like pixels

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

bootstrap grid system divides a row into

A

12 equal columns

17
Q

columns can be grouped together to create

A

wider columns

18
Q

columns can be grouped differently depending on the

A

width of the container

19
Q

bootstrap

A

open-source frontend web framework, also known as UI toolkit, for designing web applications

20
Q

grid systems are ____ and are most commonly used in ______

21
Q

t/f: columns re-arrange automatically depending on screen size