LAB 2.1 Flashcards

1
Q
  • Most popular Front-End Framework
  • Used for building responsive, mobile first websites and web applications
  • HTML/CSS/JavaScript
A

Bootstrap

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

Why Use Bootstrap?

A
  • Saves a lot of time in development.
  • It is responsive
  • It is Compatible across browsers
  • It has a large community
  • It is customizable
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q
  • are used to pad the content inside of them
A

Containers

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

there are two container classes available:
- class provides a responsive fixed width container
- class provides a full-width container, spanning the entire width of the viewport

A
  • .container
  • .container-fluid
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q
  • is built with flexbox and allows up to 12 columns across the page.
  • It is responsive, and the columns will re-arrange automatically depending on the screen size.
  • Make sure that the sum adds up to 12 or fewer (it is not required that you use all 12 available columns).
A

The Bootstrap Grid System

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q
  • .col- (extra small devices - screen width less than 576px)
  • .col-sm- (small devices - screen width equal to or greater than 576px)
  • .col-md- (medium devices - screen width equal to or greater than 768px)
  • .col-lg- (large devices - screen width equal to or greater than 992px)
  • .col-xl- (xlarge devices - screen width equal to or greater than 1200px)
  • .col-xxl- (xxlarge devices - screen width equal to or greater than 1400px)
A

Grid Classes

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