Home » Bootstrap 4 Buttons

Bootstrap 4 – Buttons

In Bootstrap 4, users can also add buttons to their web pages. There are various different types of buttons that can be applied to the web pages. Those buttons are listed below:

  1. Basic Button
  2. Primary Button
  3. Secondary Button
  4. Success Button
  5. Information Button
  6. Warning Button
  7. Danger Button
  8. Dark Button
  9. Light Button
  10. Link Button

The Sample Code to display all these button styles is given below:

Test it Now

The Output of the above given sample code will be:

Bootstrap 4 - Buttons

Buttons with Elements:

In addition to that, these buttons can sometimes be used with the elements such as <a> for links, <input> for input buttons, and so on.

For example:

Test it Now

The Output for this example will be:

Bootstrap 4 - Buttons

Buttons with Outlines:

In Bootstrap 4, a user can also add only the outlines to the buttons. There is total 8 types of buttons with outline currently available with Bootstrap 4. Upon hovering on these buttons, the user will see the color of the outline inside the button.

The different types of outline buttons are given below:

  1. Primary Outline Button
  2. Secondary Outline Button
  3. Success Outline Button
  4. Information Outline Button
  5. Warning Outline Button
  6. Danger Outline Button
  7. Dark Outline Button
  8. Light Outline Button

The Sample Code to display these outline buttons is given below:

Test it Now

The Output of this sample code will be:

Bootstrap 4 - Buttons

Different Sizes of Buttons:

A user can also resize the size of buttons with the help of using class .btn-large for enlarging the size of the button and class .btn-sm for reducing the size of the button.

For Example:

Test it Now

The Output of the above given code will be:

Bootstrap 4 - Buttons

Active Buttons or Disabled Buttons:

In Bootstrap 4, a button can be displayed as active (that appears to be pressed) or disabled (that appears to be unclickable) state.

For active button, the class .active is used to make a button appear pressed, and the disabled attribute makes a button unclickable.

However, the <a> elements do not support the disabled attribute and must therefore use the .disabled class to make it visually appear disabled.

The Sample Class for Active Buttons or Disabled Buttons will be:

Test it Now

The Output of the above given code will be:

Bootstrap 4 - Buttons

Spinner Buttons:

A user can add spinners in buttons as well in Bootstrap 4.

The Sample Code for Spinner Buttons is given below:

Test it Now

The Output of the above given code will be:

Bootstrap 4 - Buttons


You may also like