| by Arround The Web | No comments

Bootstrap Buttons | Explained

Bootstrap is a CSS framework that aids in developing responsive web applications. It has predefined classes for simple layout choices, such as the “card” class being utilized to create cards, the “table” class providing basic styles to the table element, and many more. More specifically, the “btn” class is one of them that is used to create buttons.

This article will instruct you:

How to Make Buttons in Bootstrap?

The Bootstrap “btn” class is utilized to create buttons. To add styled buttons, you can use the “btn” class with the color class, such as “btn-success” to create a green button.

In HTML, the “<button>”, “<a>”, and “<input>” tags with the type “button” are utilized to create buttons. The “btn” class has predefined styling that add basic styling to the button elements.

For a clear concept, check out the example below.

Example

In the HTML file, follow the steps to create buttons using different tags:

  • Add “<button>” and “<a>” elements and assign them “btn” and “btn-primary” classes.
  • Then, add an “<input>” tag with the type “button”. Assign it the “btn” and “btn-success” for styling as first two buttons as blue, and the third one as green:
<button class="btn btn-primary">Submit</button>

<a class="btn btn-primary" href="#"> Open</a>

<input type="button" class="btn btn-success" value="Search">

Output

How to Create Outline Buttons in Bootstrap?

To add button outlines, the Bootstrap “btn-outline-*” class is used. In its syntax,“*” here represents the outline color. For instance, “btn-outline-danger” places the red outline, “btn-outline-primary” sets the blue outline, and more.

Analyze the code given below:

<button type="button" class="btn btn-outline-primary">Next</button>

<button type="button" class="btn btn-outline-danger">Cancel</button>

<button type="button" class="btn btn-outline-success">Success</button>

It can be observed that the “Next” button has a blue outline, the “Cancel” button with red outline, and the “Success” button has been styled with a green outline:

How to Adjust Bootstrap Button Sizes?

Some Bootstrap classes are applied to adjust the button sizes, such as:

  • btn-lg” class is applied to create a large button. This class can increase font size and padding.
  • btn-md” creates a medium-sized button.
  • btn-sm” creates a small button.

Example

Now, we will create three buttons with different sizes and self-explanatory names:

<button type="button" class="btn btn-secondary btn-lg">Large</button>

<button type="button" class="btn btn-warning btn-md">medium</button>

<button type="button" class="btn btn-danger btn-sm">Small</button>

Output

How to Make a Block-Level Button in Bootstrap?

The block-level buttons are the ones that hold the full-width size. To create the block-level buttons, the “btn-block” class is utilized as follows

<button type="button" class="btn btn-warning btn-block"> button</button>

<button type="button" class="btn btn-secondary btn-block">button</button>

Output

How to Create Active State Buttons in Bootstrap?

The active state buttons refer to the buttons that are currently active. These buttons are slightly darker than normal. To create such buttons, the Bootstrap “active” class is utilized.

Example

The below code creates two buttons. The first one is in the normal state while the other one is applied with the “active” class:

<button type="button" class="btn btn-success ">Success</button>

<button type="button" class="btn btn-success active">Success</button>

Output

How to Create Disabled State Buttons in Bootstrap?

The disabled state buttons refer to the buttons that are unclickable and unusable. In Bootstrap, the “disabled” class is utilized to create a disabled state button. The “disabled” attribute can also be used for this purpose.

Example

Check out the example provided below:

  • The first button is not in a disabled state.
  • The second one utilizes the “disabled” class to create a disabled state button.
  • The third one uses the “disabled” attribute:
<button type="button" class="btn btn-success ">Cancel</button>

<button type="button" class="btn btn-success disabled">Success</button>

<button type="button" class="btn btn-success " disabled>Success</button>

Output

We have covered different aspects related to Bootstrap buttons and their styling in CSS.

Conclusion

The “btn” class is utilized to create Bootstrap buttons with a simple design. To create colored and outline buttons, the “btn-*” and “btn-outline-*” classes are utilized where the “*” symbolizes any color class. For instance, “btn-warning” creates a yellow button, “btn-outline-warning” creates a yellow outlined button, and many more. To make the buttons active or disabled, the “active” and “disabled” classes are applied, respectively. This post provided a comprehensive guide on the Bootstrap buttons.

Share Button

Source: linuxhint.com

Leave a Reply