Added Disabled Bootstrap Button State (#23316)

* Added Disabled Bootstrap Button State

Disabled Button State to show that the button is not to be clicked at that point of time

* fix: formatting/spelling and removed duplicate link
pull/24834/head^2
jeremyhampers 2018-12-04 02:08:13 +08:00 committed by Christopher McCormack
parent bc91f4fd75
commit 41ec1afcad
1 changed files with 5 additions and 0 deletions

View File

@ -84,6 +84,11 @@ This is a list of the CSS classes for different size of the buttons.
<button type="button" class="btn btn-block">Block</button>
#### Bootstrap Disabled Button State
This is used to show that the button is disabled by fading the button. This can be achieved through adding "disabled" to the `<button>` tag.
<button type="button" class="btn btn-lg btn-primary" disabled>Primary button</button>
#### Bootstrap Outlined Buttons:
It is possible to also have outlined buttons rather than fully colored in ones. This is achieved by placing the mid fix `outline` between the button class you want. A sample usage would be as follows: