Bootstrap 4 Jumbotron


Bootstrap 4 Jumbotron

'n Jumbotron dui op 'n groot grys blokkie om ekstra aandag te vestig op 'n paar spesiale inhoud of inligting.

Wenk: Binne 'n jumbotron kan jy byna enige geldige HTML plaas, insluitend ander Bootstrap-elemente/-klasse.

Selflaai-tutoriaal

Bootstrap is die gewildste HTML-, CSS- en JS-raamwerk vir die ontwikkeling van responsiewe, selfone-eerste projekte op die web.

Gebruik 'n <div>element met klas .jumbotronom 'n jumbotron te skep:

Voorbeeld

<div class="jumbotron">
  <h1>Bootstrap Tutorial</h1>
  <p>Bootstrap is the most popular HTML, CSS...</p>
</div>

Volle breedte Jumbotron

As jy 'n volwydte jumbotron sonder geronde grense wil hê, voeg die .jumbotron-fluidklas en 'n .containerof .container-fluidbinnekant daarvan by:

Voorbeeld

<div class="jumbotron jumbotron-fluid">
  <div class="container">
    <h1>Bootstrap Tutorial</h1>
    <p>Bootstrap is the most popular HTML, CSS...</p>
  </div>
</div>