Categories
Bootstrap HTML

Bootstrap 5 — Radio Buttons and Checkboxes

Bootstrap 5 is in alpha when this was written and so the details of this article are subject to change.

Bootstrap is a popular UI library for any JavaScript apps. In this article, we’ll look at how to style radio buttons and checkboxes with Bootstrap 5.

Radio Buttons

Bootstrap 5 also provides styles for radio buttons.

To add them, we can write:

<div class="form-check">  
  <input class="form-check-input" type="radio" name="fruit" id="apple">  
  <label class="form-check-label" for="apple">  
    apple  
  </label>  
</div><div class="form-check">  
  <input class="form-check-input" type="radio" name="fruit" id="orange" checked>  
  <label class="form-check-label" for="orange">  
    orange  
  </label>  
</div>

We set the type attribute to radio . And we set the name of both radio buttons to be the same so that we can select between them. Also, we use the form-check class to style the radio button. Inside the divs we use the form-check-input and form-check-label classes as we did with checkboxes.

Disabled Radio Buttons

We can disable radio buttons with the disabled attribute. Then we won’t be able to interact with them. They’ll also be lighter than usual.

For example, we can write:

<div class="form-check">  
  <input class="form-check-input" type="radio" name="flexRadioDefault" id="apple" disabled>  
  <label class="form-check-label" for="apple">  
    apple  
  </label>  
</div><div class="form-check">  
  <input class="form-check-input" type="radio" name="flexRadioDefault" id="orange" checked disabled>  
  <label class="form-check-label" for="orange">  
    orange  
  </label>  
</div>

Switches

We can add switches with the form-check and form-switch classes. The type of the inputs are set to checkbox .

For example, we can write:

<div class="form-check form-switch">  
  <input class="form-check-input" type="checkbox" id="apple">  
  <label class="form-check-label" for="apple">apple</label>  
</div><div class="form-check form-switch">  
  <input class="form-check-input" type="checkbox" id="orange" checked>  
  <label class="form-check-label" for="orange">orange</label>  
</div><div class="form-check form-switch">  
  <input class="form-check-input" type="checkbox" id="grape" disabled>  
  <label class="form-check-label" for="grape">grape</label>  
</div><div class="form-check form-switch">  
  <input class="form-check-input" type="checkbox" id="lemon" checked disabled>  
  <label class="form-check-label" for="lemon">lemon</label>  
</div>

We use the form-check and form-switch classes on the div.

And we use the form-check-input class to style the checkbox.

The form-check-label class is applied to the checkbox label.

Default (Stacked)

Checkboxes are stacked on top of each other by default.

For example, if we have:

<div class="form-check">  
  <input class="form-check-input" type="checkbox" value="" id="apple">  
  <label class="form-check-label" for="apple">  
    apple  
  </label>  
</div><div class="form-check">  
  <input class="form-check-input" type="checkbox" value="" id="orange" disabled>  
  <label class="form-check-label" for="orange">  
    orange  
  </label>  
</div>

Then we 2 checkboxes stacked on top of each other.

Likewise, if we have multiple radio buttons, they’ll also be stacked on top of each other:

<div class="form-check">  
  <input class="form-check-input" type="radio" name="fruit" id="apple" value="apple" checked>  
  <label class="form-check-label" for="apple">  
    apple  
  </label>  
</div><div class="form-check">  
  <input class="form-check-input" type="radio" name="fruit" id="orange" value="orange">  
  <label class="form-check-label" for="orange">  
    orange  
  </label>  
</div><div class="form-check">  
  <input class="form-check-input" type="radio" name="fruit" id="banana" value="banana" disabled>  
  <label class="form-check-label" for="banana">  
    banana  
  </label>  
</div>

We have multiple radio buttons with the usual classes. We didn’t have to do anything to make them stacked in addition to that.

Inline

To make checkboxes inline, we just add the form-check-line class to make them inline.

For example, we can write:

<div class="form-check form-check-inline">  
  <input class="form-check-input" type="checkbox" value="" id="apple">  
  <label class="form-check-label" for="apple">  
    apple  
  </label>  
</div><div class="form-check form-check-inline">  
  <input class="form-check-input" type="checkbox" value="" id="orange" disabled>  
  <label class="form-check-label" for="orange">  
    orange  
  </label>  
</div>

We add the form-check-inline class to each checkbox div to make them inline.

With radio buttons, we can do the same thing:

<div class="form-check form-check-inline">  
  <input class="form-check-input" type="radio" name="fruit" id="apple" value="apple" checked>  
  <label class="form-check-label" for="apple">  
    apple  
  </label>  
</div><div class="form-check form-check-inline">  
  <input class="form-check-input" type="radio" name="fruit" id="orange" value="orange">  
  <label class="form-check-label" for="orange">  
    orange  
  </label>  
</div><div class="form-check form-check-inline">  
  <input class="form-check-input" type="radio" name="fruit" id="banana" value="banana" disabled>  
  <label class="form-check-label" for="banana">  
    banana  
  </label>  
</div>

We just add them to the div.

Conclusion

We can style radio buttons and checkboxes with Bootstrap 5 styles. It comes with many styles that we can use to style them our way. Thanks for reading my article, I hope you found it helpful!

Categories
Bootstrap HTML

Bootstrap 5 — Radio Buttons, Checkboxes, and File Inputs

Bootstrap 5 is in alpha when this is written and it’s subject to change.

Bootstrap is a popular UI library for any JavaScript apps.

In this article, we’ll look at how to style radio buttons, checkboxes, and file inputs with Bootstrap 5.

Radio Buttons and Checkboxes without Labels

We can add radio buttons and checkboxes without labels.

To do that, we can write:

<div>  
  <input class="form-check-input" type="checkbox" id="checkboxNoLabel" value="">  
</div><div>  
  <input class="form-check-input" type="radio" name="radioNoLabel" id="radioNoLabel1" value="">  
</div>

to add them.

Toggle Buttons

Bootstrap lets us turn checkboxes and radio buttons into toggle buttons.

To do that, we can write:

<input type="checkbox" class="btn-check" id="btn-check" autocomplete="off">  
<label class="btn btn-primary" for="btn-check">toggle</label>

to add the toggle button.

It’ll display differently depending on if it’s toggled on or off.

The id of the input and the for attribute of the label have to match.

Radio Toggle Buttons

We can do the same for radio buttons.

For example, we can write:

<div class="btn-group">  
  <input type="radio" class="btn-check" name="options" id="apple" autocomplete="off" checked>  
  <label class="btn btn-secondary" for="apple">apple</label><input type="radio" class="btn-check" name="options" id="orange" autocomplete="off">  
  <label class="btn btn-secondary" for="orange">orange</label><input type="radio" class="btn-check" name="options" id="grape" autocomplete="off">  
  <label class="btn btn-secondary" for="grape">grape</label>  
</div>

to add a button group.

Each button is a group is a radio button.

We use the btn-group class to style the button group.

The input type is set to radio .

btn-check is the class to make them display as toggle buttons.

And the id of the input has to match the for attribute value of the label .

Outlined Styles

The toggle can have outlined styles instead of a background color.

For example, we can write:

<div class="btn-group">  
  <input type="radio" class="btn-check" name="options" id="apple" autocomplete="off" checked>  
  <label class="btn btn-outline-secondary" for="apple">apple</label><input type="radio" class="btn-check" name="options" id="orange" autocomplete="off">  
  <label class="btn btn-outline-secondary" for="orange">orange</label><input type="radio" class="btn-check" name="options" id="grape" autocomplete="off">  
  <label class="btn btn-outline-secondary" for="grape">grape</label>  
</div>

to make the buttons that aren’t chosen display an outline.

We add the word outline in the class name for the label.

For checkboxes, we can write:

<input type="checkbox" class="btn-check" id="btn-check-outlined" autocomplete="off">  
<label class="btn btn-outline-primary" for="btn-check-outlined">apple</label><br>

to make the toggle button displayed with outline styles instead of a background color.

File Browser

Bootstrap 5 provides a file browser to let users select a file.

For example, we can write:

<div class="form-file">  
  <input type="file" class="form-file-input" id="customFile">  
  <label class="form-file-label" for="customFile">  
    <span class="form-file-text">Choose a file...</span>  
    <span class="form-file-button">Browse</span>  
  </label>  
</div>

to add a file input with an input with the type set to file .

Also, we add the label with the form-file-label class.

Inside it, we add our placeholder, which is the span with the form-file-text class.

We also have a span with the form-file-button class to display a button we can click to show the file browser to let us select a file.

To disable the file input, we can add the disabled prop to the input.

For example, we can write:

<div class="form-file">  
  <input type="file" class="form-file-input" id="customFile" disabled>  
  <label class="form-file-label" for="customFile">  
    <span class="form-file-text">Choose file...</span>  
    <span class="form-file-button">Browse</span>  
  </label>  
</div>

to disable the file input.

If we have longer placeholder text, it’ll be truncated with an ellipsis added at the end:

<div class="form-file">  
  <input type="file" class="form-file-input" id="customFile">  
  <label class="form-file-label" for="customFile">  
    <span class="form-file-text">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque quis nunc ultricies enim ullamcorper pretium at cursus tellus. Curabitur sit amet leo arcu. Integer vitae tincidunt odio. Duis id nunc dignissim, fringilla lacus ut, rutrum ligula. Morbi euismod accumsan augue, sit amet finibus ipsum ultrices ac. Ut convallis quis lacus in volutpat. Pellentesque volutpat dui et enim mattis, egestas posuere nisl maximus. Aenean commodo laoreet enim, sit amet tincidunt nisl porttitor non. Ut vestibulum mauris urna, eget consectetur tellus maximus at. Suspendisse pharetra ut erat sed euismod.  
    </span>  
    <span class="form-file-button">Browse</span>  
  </label>  
</div>

Conclusion

We can style radio buttons and checkboxes as toggle buttons.

Also, Bootstrap 5 comes with its own file input.

Categories
Bootstrap HTML

Bootstrap 5 — Table Captions, Figures, and Form Fields

Bootstrap 5 is in alpha when this is written and it’s subject to change.

Bootstrap is a popular UI library for any JavaScript apps.

In this article, we’ll look at how to style tables, figures, and form fields with Bootstrap 5.

Captions

We can add a caption to the top of the table with the caption-top class:

<table class="table caption-top">  
  <caption>List of people</caption>  
  <thead class="table-dark">  
    <tr>  
      <th scope="col">#</th>  
      <th scope="col">First</th>  
      <th scope="col">Last</th>  
      <th scope="col">Age</th>  
    </tr>  
  </thead>  
  <tbody>  
    <tr>  
      <th scope="row">1</th>  
      <td>james</td>  
      <td>smith</td>  
      <td>20</td>  
    </tr>  
    <tr>  
      <th scope="row">2</th>  
      <td>mary</td>  
      <td>jones</td>  
      <td>20</td>  
    </tr>  
    <tr>  
      <th scope="row">3</th>  
      <td colspan="2">Larry</td>  
      <td>50</td>  
    </tr>  
  </tbody>  
  <tfoot>  
    <tr>  
      <th>footer</th>  
      <td>footer</td>  
      <td>footer</td>  
      <td>footer</td>  
    </tr>  
  </tfoot>  
</table>

Responsive Tables

We can make tables responsive with the table-responsive class

To make it always responsive, we can use the table-responsive class:

<div class="table-responsive">  
  <table class="table">  
    <thead class="table-dark">  
      <tr>  
        <th scope="col">#</th>  
        <th scope="col">First</th>  
        <th scope="col">Last</th>  
        <th scope="col">Age</th>  
      </tr>  
    </thead>  
    <tbody>  
      <tr>  
        <th scope="row">1</th>  
        <td>james</td>  
        <td>smith</td>  
        <td>20</td>  
      </tr>  
      <tr>  
        <th scope="row">2</th>  
        <td>mary</td>  
        <td>jones</td>  
        <td>20</td>  
      </tr>  
      <tr>  
        <th scope="row">3</th>  
        <td colspan="2">Larry</td>  
        <td>50</td>  
      </tr>  
    </tbody>  
    <tfoot>  
      <tr>  
        <th>footer</th>  
        <td>footer</td>  
        <td>footer</td>  
        <td>footer</td>  
      </tr>  
    </tfoot>  
  </table>  
</div>

We make the table always responsive with the class in a div outside the table.

Also, we can make them responsive at a given breakpoint.

For example, we can write:

<div class="table-responsive-sm">  
  <table class="table">  
    <thead class="table-dark">  
      <tr>  
        <th scope="col">#</th>  
        <th scope="col">First</th>  
        <th scope="col">Last</th>  
        <th scope="col">Age</th>  
      </tr>  
    </thead>  
    <tbody>  
      <tr>  
        <th scope="row">1</th>  
        <td>james</td>  
        <td>smith</td>  
        <td>20</td>  
      </tr>  
      <tr>  
        <th scope="row">2</th>  
        <td>mary</td>  
        <td>jones</td>  
        <td>20</td>  
      </tr>  
      <tr>  
        <th scope="row">3</th>  
        <td colspan="2">Larry</td>  
        <td>50</td>  
      </tr>  
    </tbody>  
    <tfoot>  
      <tr>  
        <th>footer</th>  
        <td>footer</td>  
        <td>footer</td>  
        <td>footer</td>  
      </tr>  
    </tfoot>  
  </table>  
</div>

to make it responsive when the screen is wide enough to hit the sm breakpoint or wider.

sm can be substituted with md , lg , xl , or xxl .

Customizing in SASS

The table style presets can be changed in SASS.

The $table-striped-bg-factor, $table-active-bg-factor and $table-hover-bg-factor variables are used to determine the contrast in table variants.

Theme colors are lightened by the $table-bg-level variable.

Figures

We can add figures with captions with the figure tag.

The figcaption tag adds a caption for the figure.

Bootstrap 5 provides classes to make styling them easier.

For example, we can write:

<figure class="figure">  
  <img src="http://placekitten.com/200/200" class="figure-img img-fluid rounded" alt="cat">  
  <figcaption class="figure-caption">A cat.</figcaption>  
</figure>

With Bootstrap 5’s text utilities, aligning the figure captions are easy:

<figure class="figure">  
  <img src="http://placekitten.com/200/200" class="figure-img img-fluid rounded" alt="cat">  
  <figcaption class="figure-caption text-right">A cat.</figcaption>  
</figure>

With the text-right class, we aligned the caption to the right.

Form Controls

We can add form controls with Bootstrap 5 styles with the included classes.

For example, we can write:

<div class="mb-3">  
  <label for="email" class="form-label">Email address</label>  
  <input type="email" class="form-control" id="email" placeholder="name@example.com">  
</div><div class="mb-3">  
  <label for="text" class="form-label">Example textarea</label>  
  <textarea class="form-control" id="text" rows="3"></textarea>  
</div>

to add some form controls.

We have the form-control class to add the form control styles.

form-label class add the form label styles.

Sizing

To change the size of the controls, we can use the .form-control-lg and .form-control-sm classes:

<div class="mb-3">  
  <label for="email" class="form-label">Email address</label>  
  <input type="email" class="form-control-lg" id="email" placeholder="name@example.com">  
</div>

We make the form control large with the form-control-lg class.

Likewise, we can make them smaller with the .form-control.sm class:

<div class="mb-3">  
  <label for="email" class="form-label">Email address</label>  
  <input type="email" class="form-control-sm" id="email" placeholder="name@example.com">  
</div>

Readonly

We can add the readonly boolean attribute to prevent users from changing the input value of the form.

For example, we can write:

<div class="mb-3">  
  <label for="email" class="form-label">Email address</label>  
  <input type="email" class="form-control" id="email" placeholder="name@example.com" readonly>  
</div>

The form input will be grayed out.

Readonly Plain Text

If we want to have a readonly form field without the any styles, then we can use the .form-control-plaintext class to make the field display as plain text.

For example, we can write:

<div class="mb-3">  
  <label for="email" class="form-label">Email address</label>  
  <input type="email" class="form-control-plaintext" id="email" placeholder="name@example.com" readonly>  
</div>

Now there’re no borders and other things displayed.

Conclusion

We can add styles to tables, figures, and form fields.

Categories
Bootstrap HTML

Bootstrap 5 — More Table Styles

Bootstrap 5 is in alpha when this is written and it’s subject to change.

Bootstrap is a popular UI library for any JavaScript apps.

In this article, we’ll look at how to style tables with Bootstrap 5.

Tables without Borders

We can create a table without borders with the .table-borderless class:

<table class="table table-borderless">  
  <thead>  
    <tr>  
      <th scope="col">#</th>  
      <th scope="col">First</th>  
      <th scope="col">Last</th>  
      <th scope="col">Age</th>  
    </tr>  
  </thead>  
  <tbody>  
    <tr>  
      <th scope="row">1</th>  
      <td>james</td>  
      <td>smith</td>  
      <td>20</td>  
    </tr>  
    <tr>  
      <th scope="row">2</th>  
      <td>mary</td>  
      <td>jones</td>  
      <td>20</td>  
    </tr>  
    <tr>  
      <th scope="row">3</th>  
      <td colspan="2">Larry</td>  
      <td>50</td>  
    </tr>  
  </tbody>  
</table>

It also works with other variants:

<table class="table table-dark table-borderless">  
  <thead>  
    <tr>  
      <th scope="col">#</th>  
      <th scope="col">First</th>  
      <th scope="col">Last</th>  
      <th scope="col">Age</th>  
    </tr>  
  </thead>  
  <tbody>  
    <tr>  
      <th scope="row">1</th>  
      <td>james</td>  
      <td>smith</td>  
      <td>20</td>  
    </tr>  
    <tr>  
      <th scope="row">2</th>  
      <td>mary</td>  
      <td>jones</td>  
      <td>20</td>  
    </tr>  
    <tr>  
      <th scope="row">3</th>  
      <td colspan="2">Larry</td>  
      <td>50</td>  
    </tr>  
  </tbody>  
</table>

Small Tables

We can use the .table-sm class to make a table more compact by reducing the padding in half:

<table class="table table-sm">  
  <thead>  
    <tr>  
      <th scope="col">#</th>  
      <th scope="col">First</th>  
      <th scope="col">Last</th>  
      <th scope="col">Age</th>  
    </tr>  
  </thead>  
  <tbody>  
    <tr>  
      <th scope="row">1</th>  
      <td>james</td>  
      <td>smith</td>  
      <td>20</td>  
    </tr>  
    <tr>  
      <th scope="row">2</th>  
      <td>mary</td>  
      <td>jones</td>  
      <td>20</td>  
    </tr>  
    <tr>  
      <th scope="row">3</th>  
      <td colspan="2">Larry</td>  
      <td>50</td>  
    </tr>  
  </tbody>  
</table>

This also works with other table variants:

<table class="table table-dark table-sm">  
  <thead>  
    <tr>  
      <th scope="col">#</th>  
      <th scope="col">First</th>  
      <th scope="col">Last</th>  
      <th scope="col">Age</th>  
    </tr>  
  </thead>  
  <tbody>  
    <tr>  
      <th scope="row">1</th>  
      <td>james</td>  
      <td>smith</td>  
      <td>20</td>  
    </tr>  
    <tr>  
      <th scope="row">2</th>  
      <td>mary</td>  
      <td>jones</td>  
      <td>20</td>  
    </tr>  
    <tr>  
      <th scope="row">3</th>  
      <td colspan="2">Larry</td>  
      <td>50</td>  
    </tr>  
  </tbody>  
</table>

Vertical Alignment

The vertical alignment of tables can be changed with Bootstrap 5 classes.

They can be changed in cells, tables, or table rows:

<table class="table table-sm table-dark">  
  <div class="table-responsive">  
    <table class="table align-middle">  
      <thead>  
        <tr>  
          ...  
        </tr>  
      </thead>  
      <tbody>  
        <tr class="align-bottom">  
          ...  
        </tr>  
        <tr>  
          <td>...</td>  
          <td class="align-top">aligned to the top.</td>  
          <td>...</td>  
        </tr>  
      </tbody>  
    </table>  
  </div>  
</table>

We have the align-top , align-middle , and align-bottom classes to make the alignments.

Nesting

Border styles, active styles, and table variants aren’t inherited by nested tables.

For example, we can write:

<table class="table table-striped">  
  <thead>  
    <tr class="align-bottom">  
      <th scope="col">#</th>  
      <th scope="col">First</th>  
      <th scope="col">Last</th>  
      <th scope="col">Age</th>  
    </tr>  
  </thead>  
  <tbody> <tr>  
      <th scope="row">1</th>  
      <td>james</td>  
      <td>smith</td>  
      <td>20</td>  
    </tr> <tr>  
      <td colspan="4">  
        <table class="table align-bottom">  
          <thead>  
            <tr class="align-bottom">  
              <th scope="col">#</th>  
              <th scope="col">First</th>  
              <th scope="col">Last</th>  
              <th scope="col">Age</th>  
            </tr>  
          </thead>  
          <tbody>  
            <tr>  
              <th scope="row">1</th>  
              <td>james</td>  
              <td>smith</td>  
              <td>20</td>  
            </tr>  
            <tr>  
              <th scope="row">2</th>  
              <td>mary</td>  
              <td>jones</td>  
              <td>20</td>  
            </tr>  
            <tr>  
              <th scope="row">3</th>  
              <td colspan="2">Larry</td>  
              <td>50</td>  
            </tr>  
          </tbody>  
        </table>  
      </td>  
    </tr>  
  </tbody>  
</table>

to apply styles to nested tables.

The styles have to be applied to each table individually.

Table Head

We can use the .table-light or .table-dark classes to make the thead appear light or dark gray.

For example, we can write:

<table class="table">  
  <thead class="table-light">  
    <tr>  
      <th scope="col">#</th>  
      <th scope="col">First</th>  
      <th scope="col">Last</th>  
      <th scope="col">Age</th>  
    </tr>  
  </thead>  
  <tbody>  
    <tr>  
      <th scope="row">1</th>  
      <td>james</td>  
      <td>smith</td>  
      <td>20</td>  
    </tr>  
    <tr>  
      <th scope="row">2</th>  
      <td>mary</td>  
      <td>jones</td>  
      <td>20</td>  
    </tr>  
    <tr>  
      <th scope="row">3</th>  
      <td colspan="2">Larry</td>  
      <td>50</td>  
    </tr>  
  </tbody>  
</table>

to make the table heading light gray.

We can make it dark gray with the table-dark class:

<table class="table">  
  <thead class="table-dark">  
    <tr>  
      <th scope="col">#</th>  
      <th scope="col">First</th>  
      <th scope="col">Last</th>  
      <th scope="col">Age</th>  
    </tr>  
  </thead>  
  <tbody>  
    <tr>  
      <th scope="row">1</th>  
      <td>james</td>  
      <td>smith</td>  
      <td>20</td>  
    </tr>  
    <tr>  
      <th scope="row">2</th>  
      <td>mary</td>  
      <td>jones</td>  
      <td>20</td>  
    </tr>  
    <tr>  
      <th scope="row">3</th>  
      <td colspan="2">Larry</td>  
      <td>50</td>  
    </tr>  
  </tbody>  
</table>

Table Foot

We can add a footer to a table with the tfoot element.

For example, we can write:

<table class="table">  
  <thead class="table-dark">  
    <tr>  
      <th scope="col">#</th>  
      <th scope="col">First</th>  
      <th scope="col">Last</th>  
      <th scope="col">Age</th>  
    </tr>  
  </thead>  
  <tbody>  
    <tr>  
      <th scope="row">1</th>  
      <td>james</td>  
      <td>smith</td>  
      <td>20</td>  
    </tr>  
    <tr>  
      <th scope="row">2</th>  
      <td>mary</td>  
      <td>jones</td>  
      <td>20</td>  
    </tr>  
    <tr>  
      <th scope="row">3</th>  
      <td colspan="2">Larry</td>  
      <td>50</td>  
    </tr>  
  </tbody>  
  <tfoot>  
    <tr>  
      <th>footer</th>  
      <td>footer</td>  
      <td>footer</td>  
      <td>footer</td>  
    </tr>  
  </tfoot>  
</table>

to add a footer.

Captions

We can add the caption tag to add a caption to label the table.

For example, we can write:

<table class="table">  
  <caption>List of people</caption>  
  <thead class="table-dark">  
    <tr>  
      <th scope="col">#</th>  
      <th scope="col">First</th>  
      <th scope="col">Last</th>  
      <th scope="col">Age</th>  
    </tr>  
  </thead>  
  <tbody>  
    <tr>  
      <th scope="row">1</th>  
      <td>james</td>  
      <td>smith</td>  
      <td>20</td>  
    </tr>  
    <tr>  
      <th scope="row">2</th>  
      <td>mary</td>  
      <td>jones</td>  
      <td>20</td>  
    </tr>  
    <tr>  
      <th scope="row">3</th>  
      <td colspan="2">Larry</td>  
      <td>50</td>  
    </tr>  
  </tbody>  
  <tfoot>  
    <tr>  
      <th>footer</th>  
      <td>footer</td>  
      <td>footer</td>  
      <td>footer</td>  
    </tr>  
  </tfoot>  
</table>

to add a label to the bottom of the table.

Conclusion

We can add tables with various styles.

Nested tables have to have styles applied to them individually.

Categories
Bootstrap HTML

Bootstrap 5 — Lists and Images

Bootstrap 5 is in alpha when this is written and it’s subject to change.

Bootstrap is a popular UI library for any JavaScript apps.

In this article, we’ll look at how to style lists and images with Bootstrap 5.

Lists

Bootstrap 5 removes the default list-style and left margin of list items.

This only applies to immediate children list items.

The class has to be added to nested lists.

For example, we can wire:

<ul class="list-unstyled">  
  <li>Lorem ipsum dolor sit amet</li>  
  <li>Duis id nunc dignissim</li>  
  <li>Nulla volutpat aliquam velit  
    <ul>  
      <li>Phasellus iaculis neque</li>  
      <li> Suspendisse potenti. Aliquam erat volutpat.</li>  
    </ul>  
  </li>  
  <li>Pellentesque habitant morbi tristique senectus</li>  
  <li>Aenean sit amet erat nunc</li>  
  <li>Eget porttitor lorem</li>  
</ul>

to add a nested list.

We added the list-unstyled class to add an unstyled list.

Inline

We can remove a list’s bullets and apply some light margin with the combination of the .list-inline and .list-inline-item classes:

<ul class="list-inline">  
  <li class="list-inline-item">Lorem ipsum dolor sit amet, consectetur adipiscing elit.</li>  
  <li class="list-inline-item">Pellentesque quis nunc ultricies enim ullamcorper pretium at cursus tellus.</li>  
  <li class="list-inline-item"> Ut convallis quis lacus in volutpat. Pellentesque volutpat dui et enim mattis</li>  
</ul>

We add the classes to make the items display inline with margins.

Description List Alignment

To make a list with description, we can use the dl , dt , and dd tags with the width styles.

For example, we can write:

<dl class="row">  
  <dt class="col-sm-3">Description lists</dt>  
  <dd class="col-sm-9">A description list is perfect for defining terms.</dd>  
  
  <dt class="col-sm-3">Euismod</dt>  
  <dd class="col-sm-9">  
    <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>  
    <p>ellentesque quis nunc ultricies enim ullamcorper pretium at cursus tellus. Curabitur sit amet leo arcu. Integer vitae tincidunt odio. Duis id nunc dignissim.</p>  
  </dd>  
  
  <dt class="col-sm-3">Maecenas imperdiet sapien augue, ac malesuada metus ultrices et.</dt>  
  <dd class="col-sm-9">Aliquam erat volutpat. Quisque rutrum commodo felis imperdiet fermentum. Integer hendrerit dictum augue dapibus semper. In ac nisi consectetur.</dd>  
  
  <dt class="col-sm-3 text-truncate">Truncated term is truncated</dt>  
  <dd class="col-sm-9">Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas.</dd>  
  
  <dt class="col-sm-3">Nesting</dt>  
  <dd class="col-sm-9">  
    <dl class="row">  
      <dt class="col-sm-4">Nested definition list</dt>  
      <dd class="col-sm-8">Aenean dolor augue, vulputate non mattis eu, lacinia viverra ex.</dd>  
    </dl>  
  </dd>  
</dl>

We have the list with the dt and dd tags with the column classes to set the width of them.

Images

We can add responsive images with the img element and the .img-fluid class.

For example, we can write:

<img src="http://placekitten.com/200/200" class="img-fluid" alt="cat">

Image Thumbnails

To add thumbnails, we use the .img-thumbnail class:

<img src="http://placekitten.com/200/200" class="img-thumbnail" alt="cat">

Aligning Images

We can align images with the float-left or float-right classes:

<img src="http://placekitten.com/200/200" class="rounded float-left" alt="cat">  
<img src="http://placekitten.com/200/200" class="rounded float-right" alt="cat">

To make it aligned centered horizontally, we can write:

<img src="http://placekitten.com/200/200" class="rounded mx-auto d-block" alt="cat">

We used the mx-auto class to make the image centered.

Also, we can use the text-center class to do the same thing:

<div class="text-center">  
  <img src="http://placekitten.com/200/200" class="rounded" alt="cat">  
</div>

Picture

The picture element can be used to specify multiple sources of images.

So we can write:

​<picture>  
  <img src="http://placekitten.com/200/200" class="img-fluid img-thumbnail" alt="cat 1">  
  <img src="http://placekitten.com/201/201" class="img-fluid img-thumbnail" alt="cat 2">  
</picture>

We put the img elements in the picture tags.

And we’ve to add the img-* classes ion the img tag rather than the picture tag.

Conclusion

We can style lists and images with Bootstrap 5.

It comes with the classes for us to do so.