Results: 1578
Notes
  • Newest first
  • Oldest first
  • Newest first(All)
  • Oldest first(All)
Breadcrumb nav menu with forward slash separator
<nav aria-label="breadcrumb">
  <ol class="breadcrumb">
    <li class="breadcrumb-item"><a href="#">Home</a></li>
    <li class="breadcrumb-item"><a href="#">Library</a></li>
    <li class="breadcrumb-item active" aria-current="page">Data</li>
  </ol>
</nav>
by Valeri Tandilashvili
5 years ago
0
Bootstrap
breadcrumb
Bootstrap official doc
1
<h1>Example heading <span class="badge badge-primary">New</span></h1>
<h2>Example heading <span class="badge badge-secondary">New</span></h2>
<h3>Example heading <span class="badge badge-warning">New</span></h3>
<h4>Example heading <span class="badge badge-success">New</span></h4>
<h5>Example heading <span class="badge badge-secondary">New</span></h5>
<h6>Example heading <span class="badge badge-secondary">New</span></h6>
by Valeri Tandilashvili
5 years ago
0
Bootstrap
badge
Bootstrap official doc
2
primary
with class
alert-primary
<div class="alert alert-primary" role="alert">
  A simple primary alert with <a href="#" class="alert-link">an example link</a>. Give it a click if you like.
</div>
secondary
with class
alert-secondary
<div class="alert alert-secondary" role="alert">
  A simple secondary alert with <a href="#" class="alert-link">an example link</a>. Give it a click if you like.
</div>
success
with class
alert-success
<div class="alert alert-success" role="alert">
  A simple success alert with <a href="#" class="alert-link">an example link</a>. Give it a click if you like.
</div>
danger
with class
alert-danger
<div class="alert alert-danger" role="alert">
  A simple danger alert with <a href="#" class="alert-link">an example link</a>. Give it a click if you like.
</div>
warning
with class
alert-warning
<div class="alert alert-warning" role="alert">
  A simple warning alert with <a href="#" class="alert-link">an example link</a>. Give it a click if you like.
</div>
info
with class
alert-info
<div class="alert alert-info" role="alert">
  A simple info alert with <a href="#" class="alert-link">an example link</a>. Give it a click if you like.
</div>
light
with class
alert-light
<div class="alert alert-light" role="alert">
  A simple light alert with <a href="#" class="alert-link">an example link</a>. Give it a click if you like.
</div>
dark
with class
alert-dark
<div class="alert alert-dark" role="alert">
  A simple dark alert with <a href="#" class="alert-link">an example link</a>. Give it a click if you like.
</div>
by Valeri Tandilashvili
5 years ago
0
Bootstrap
alert
Bootstrap official doc
1
<div class="alert alert-success" role="alert">
  <h4 class="alert-heading">Well done!</h4>
  <p>Aww yeah, you successfully read this important alert message. This example text is going to run a bit longer so that you can see how spacing within an alert works with this kind of content.</p>
  <hr>
  <p class="mb-0">Whenever you need to, be sure to use margin utilities to keep things nice and tidy.</p>
</div>
by Valeri Tandilashvili
5 years ago
0
Bootstrap
alert
Bootstrap official doc
1
The first row is not responsive and there will be 4 columns for any breakpoints but the second row is responsive based on
md
and
lg
device sizes
<div class="container">
        <div class="row">
          <div class="col">
            One of three columns
          </div>
          <div class="col">
            One of three columns
          </div>
          <div class="col">
            One of three columns
          </div>
          <div class="col">
            One of three columns
          </div>
        </div>

        <br><br><br>
        
        <div class="row">
          <div class="col-md-6 col-lg-3">
            One of three columns
          </div>
          <div class="col-md-6 col-lg-3">
            One of three columns
          </div>
          <div class="col-md-6 col-lg-3">
            One of three columns
          </div>
          <div class="col-md-6 col-lg-3">
            One of three columns
          </div>
        </div>
    </div>
by Valeri Tandilashvili
5 years ago
0
Bootstrap
responsive layout
Bootstrap v5: Getting Started (Buttons, Responsive Columns, Accordion)
2
To assign margin related properties using the classes:
.mt-3
- margin-top
.mr-3
- margin-right
.mb-3
- margin-bottom
.ml-3
- margin-left
.mx-3
- margin-left, margin-right
.my-3
- margin-top, margin-bottom
.m-3
- margin-top, margin-bottom, margin-left, margin-right The same for padding properties:
.pt-3
- padding-top
.pr-3
- padding-right
.pb-3
- padding-bottom
.pl-3
- padding-left
.px-3
- padding-left, padding-right
.py-3
- padding-top, padding-bottom
.p-3
- padding-top, padding-bottom, padding-left, padding-right
by Valeri Tandilashvili
5 years ago
0
Bootstrap
Bootstrap v5: Getting Started (Buttons, Responsive Columns, Accordion)
2
.mt-1
to
mt-5
classes for
.row
containers to assign
margin-top
by Valeri Tandilashvili
5 years ago
0
Bootstrap
Bootstrap v5: Getting Started (Buttons, Responsive Columns, Accordion)
1
we can create block level buttons - those that span the full width of a parent by adding
.btn-block
<button type="button" class="btn btn-primary btn-lg btn-block">Block level button</button>
<button type="button" class="btn btn-secondary btn-lg btn-block">Block level button</button>
by Valeri Tandilashvili
5 years ago
0
Bootstrap
buttons
Bootstrap official doc
1
The grid system that starts out stacked and becomes horizontal at the small breakpoint (sm)
<div class="container">
  <div class="row">
    <div class="col-sm">col-sm</div>
    <div class="col-sm">col-sm</div>
    <div class="col-sm">col-sm</div>
  </div>
</div>
by Valeri Tandilashvili
5 years ago
0
Bootstrap
layout
Bootstrap official doc
1
We can specify a numbered class when we need a particularly sized column
<div class="container">
  <div class="row">
    <div class="col-8">col-8</div>
    <div class="col-4">col-4</div>
  </div>
</div>
by Valeri Tandilashvili
5 years ago
0
Bootstrap
layout
Bootstrap official doc
1
Results: 1578