Bootstrap Flashcards

1
Q

Szöveg keretbe helyezése, responsive fix szélességgel

A

<div>
<h1>My First Bootstrap Page</h1>
<p>This is some text.</p>
</div>

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

szöveg teljes szélességű keretbe helyezése responsive fix szélességgel

A

<div>
<h1>My First Bootstrap Page</h1>
<p>This part is inside a .container-fluid class.</p>
<p>The .container-fluid class provides a full width container, spanning the entire width of the viewport.</p>
</div>

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

bootsrap 4 Grid típusa

A

.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)

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

felsorolás bootsrappel

A
<div class="container">
  <h1>Description Lists</h1>    
  <p>The dl element indicates a description list:</p>
  <dl>
    <dt>Coffee</dt>
    <dd>- black hot drink</dd>
    <dt>Milk</dt>
    <dd>- white cold drink</dd>
  </dl>     
</div>
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

félkövér szöveg:

A

.font-weight-bold

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

félkövérebb szöveg

A

.font-weight-bolder

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

dőlt-betűs szöveg

A

.font-italic

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

light weight text

A

.font-weight-light

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

Lighter weight text

A

.font-weight-lighter

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

grid automatikus layout kezeléssel

A
<div class="row">
  <div class="col"></div>
  <div class="col"></div>
  <div class="col"></div>
</div>
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

grid hosszának megadására, 4 egyenlő részre osztására példa

A
<div class="row">
  <div class="col-sm-3">.col-sm-3</div>
  <div class="col-sm-3">.col-sm-3</div>
  <div class="col-sm-3">.col-sm-3</div>
  <div class="col-sm-3">.col-sm-3</div>
</div>
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

táblázat megadása

A

Firstname
Lastname
Email

    John
    Doe
    john@example.com

    Mary
    Moe
    mary@example.com

    July
    Dooley
    july@example.com
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

Képnek kerek sarok

A
<div class="container">
  <h2>Rounded Corners</h2>
  <p>The .rounded class adds rounded corners to an image:</p>            
  <img class="rounded"> 
</div>
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

kerek kép

A
<div class="container">
  <h2>Circle</h2>
  <p>The .rounded-circle class shapes the image to a circle:</p>            
  <img class="rounded-circle"> 
</div>
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

Keretes kép:

A
<div class="container">
  <h2>Thumbnail</h2>
  <p>The .img-thumbnail class creates a thumbnail of the image:</p>            
  <img class="img-thumbnail"> 
</div>
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

Képek jobbra és balra igazítása:

A
<div class="container">
  <h2>Thumbnail</h2>
  <p>The .img-thumbnail class creates a thumbnail of the image:</p>            
  <img class="img-thumbnail"> 
</div>