Bootstrap Flashcards
Szöveg keretbe helyezése, responsive fix szélességgel
<div>
<h1>My First Bootstrap Page</h1>
<p>This is some text.</p>
</div>
szöveg teljes szélességű keretbe helyezése responsive fix szélességgel
<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>
bootsrap 4 Grid típusa
.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)
felsorolás bootsrappel
<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>
félkövér szöveg:
.font-weight-bold
félkövérebb szöveg
.font-weight-bolder
dőlt-betűs szöveg
.font-italic
light weight text
.font-weight-light
Lighter weight text
.font-weight-lighter
grid automatikus layout kezeléssel
<div class="row"> <div class="col"></div> <div class="col"></div> <div class="col"></div> </div>
grid hosszának megadására, 4 egyenlő részre osztására példa
<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>
táblázat megadása
Firstname
Lastname
Email
John Doe john@example.com Mary Moe mary@example.com July Dooley july@example.com
Képnek kerek sarok
<div class="container"> <h2>Rounded Corners</h2> <p>The .rounded class adds rounded corners to an image:</p> <img class="rounded"> </div>
kerek kép
<div class="container"> <h2>Circle</h2> <p>The .rounded-circle class shapes the image to a circle:</p> <img class="rounded-circle"> </div>
Keretes kép:
<div class="container"> <h2>Thumbnail</h2> <p>The .img-thumbnail class creates a thumbnail of the image:</p> <img class="img-thumbnail"> </div>