BOOTSTRAP 基础教程
BOOTSTRAP 高级教程
BOOTSTRAP 示例

Bootstrap Buttons

In this tutorial you will learn how to create and modify buttons with Bootstrap.

Creating Buttons with Bootstrap

Buttons are the integral part of a website and application. They are used for various purposes like, submit or reset an HTML form, performing interactive actions such as showing or hiding something on a web page on click of the button, etc. The Bootstrap button CSS provides the quick and easy way to create and customize the buttons.

Bootstrap Button Styles

Different classes are available in Bootstrap for styling the buttons as well as to indicate the different states. Button styles can be applied to any element. However, it is applied normally to the <a>, <input>, and <button> elements for the best rendering.

The following table lists the different buttons which are available in the Bootstrap:

Button 说明
Default
btn btn-default
Default gray button with gradient.
Primary btn btn-primary Provides extra visual weight to indicate primary action button in a set of buttons.
Info btn btn-info Can be used as an alternative to the default button.
Success btn btn-success Indicates a successful or positive action.
Warning btn btn-warning Indicates caution should be taken with this action.
Danger btn btn-danger Indicates a dangerous or potentially negative action.
Link btn btn-link Deemphasize a button by making it look like a link while maintaining button behavior.

The following example will show you these buttons in action.

  • <button type="button" class="btn btn-default">Default</button>
  • <button type="button" class="btn btn-primary">Primary</button>
  • <button type="button" class="btn btn-info">Info</button>
  • <button type="button" class="btn btn-success">Success</button>
  • <button type="button" class="btn btn-warning">Warning</button>
  • <button type="button" class="btn btn-danger">Danger</button>
  • <button type="button" class="btn btn-link">Link</button>

Warning: Internet Explorer 9 doesn't crop background gradients on rounded corners, so gradient is removed from buttons.


Changing the Sizes of Buttons

Bootstrap gives you option further to scaling a button up or down. You can make buttons larger or smaller through adding an extra class .btn-lg, .btn-sm, or .btn-xs.

  • <p>
  •     <button type="button" class="btn btn-primary btn-lg">Large button</button>
  •     <button type="button" class="btn btn-default btn-lg">Large button</button>
  • </p>
  • <p>
  •     <button type="button" class="btn btn-primary">Default button</button>
  •     <button type="button" class="btn btn-default">Default button</button>
  • </p>
  • <p>
  •     <button type="button" class="btn btn-primary btn-sm">Small button</button>
  •     <button type="button" class="btn btn-default btn-sm">Small button</button>
  • </p>
  • <p>
  •     <button type="button" class="btn btn-primary btn-xs">Extra small button</button>
  •     <button type="button" class="btn btn-default btn-xs">Extra small button</button>
  • </p>

— 上面示例的输出将如下所示:

You can also create block level buttons (buttons that covers the full width of the parent elements) by adding an extra class .btn-block.

  • <button type="button" class="btn btn-primary btn-lg btn-block">Block level button</button>
  • <button type="button" class="btn btn-default btn-lg btn-block">Block level button</button>

— 上面示例的输出将如下所示:


Bootstrap Disabled Buttons

Sometimes we need to disable a button for certain reasons like, a user in case is not eligible to perform this particular action, or we want to ensure that user should performed all other required actions before proceed to this particular action.

Creating Disabled Buttons Using Anchor Elements

Buttons created through <a> tag can be disabled by adding the class .disabled.

  • <a href="#" class="btn btn-primary btn-lg disabled">Primary link</a>
  • <a href="#" class="btn btn-default btn-lg disabled">Link</a>

— 上面示例的输出将如下所示:

Note: The .disabled class only changes the visual appearance of the link by making it gray and removing the hover effect, however the link will remain clickable unless you remove the href attribute. Alternatively, you could implement custom JavaScript to prevent those clicks.

Creating Disabled Buttons Using Button and Input Element

Buttons created through <button> or <input> tag can be disabled by adding the disabled attribute to the respective element.

  • <button type="button" class="btn btn-primary btn-lg disabled" disabled="disabled">Primary button</button>
  • <button type="button" class="btn btn-default btn-lg" disabled="disabled">Button</button>

— 上面示例的输出将如下所示:

In the next chapter you will learn how to combine multiple buttons horizontally or vertically in a line like toolbars using the Bootstrap button groups component.

Advertisements