Bootstrap Flashcards

1
Q

Bootstrap 5.1

A

https://getbootstrap.com/docs/5.1/getting-started/introduction/

The docs

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

Bootstrap

A

Created by dev of Twitter for making responsive sites quick and easy.

It defines some predefined ‘class’es that can be inserted in HTML and get a style without having to write any CSS.

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

Navigation Bar

A

navbar documentation

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

Grid Layout

A

Bootstrap has ready-made grid layout that can be used to have elements wrap around certain resolution as needed quickly without needing to write bunch of CSS code.

Just using container class with some row and column classes as defined in Bootstrap docs, this can be achieved.

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

Where do we insert the Bootstrap API?

A

Its inserted in the header portion of HTML, and ABOVE ALL THE CUSTOM CSS CODE so our custom CSS code can overwrite the ones from Bootstrap.

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

Bootstrap button class

A

Easily insert buttons in your web page with predefined ‘.btn’ classes.

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

Bootstrap Caraousel

A

Carousel is basically sliding element that switch content with the press of a button.

Bootstrap has classes for easy insert of such feature in the page.

class used - ‘carousel slide’

For more, check the documentation.

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

Bootstrap Card

A

Card like pricing cards, that are seen on sites occasionally, can be invoked as well using Bootstrap.

classes used - ‘.card’

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