bootstrap pozicionate button code example
Example 1: bootstrap Button tags
The .btn classes are designed to be used with the <button> element.
However, you can also use these classes on <a> or <input> elements
(though some browsers may apply a slightly different rendering).
When using button classes on <a> elements that are used to trigger in-page
functionality (like collapsing content), rather than linking to new pages or
sections within the current page, these links should be given a role="button"
to appropriately convey their purpose to assistive technologies such as screen
readers.
<a class="btn btn-primary" href="#" role="button">Link</a>
<button class="btn btn-primary" type="submit">Button</button>
<input class="btn btn-primary" type="button" value="Input">
<input class="btn btn-primary" type="submit" value="Submit">
<input class="btn btn-primary" type="reset" value="Reset">
Example 2: bootstrap Checkbox buttons
Bootstrap’s .button styles can be applied to other elements, such as
<label>s, to provide checkbox or radio style button toggling. Add
data-toggle="buttons" to a .btn-group containing those modified buttons
to enable their toggling behavior via JavaScript and add .btn-group-toggle
to style the <input>s within your buttons. Note that you can create single
input-powered buttons or groups of them.
The checked state for these buttons is only updated via click event on the
button. If you use another method to update the input—e.g., with
<input type="reset"> or by manually applying the input’s checked
property—you’ll need to toggle .active on the <label> manually.
Note that pre-checked buttons require you to manually add the .active class
to the input’s <label>.
<div class="btn-group btn-group-toggle" data-toggle="buttons">
<label class="btn btn-secondary active">
<input type="radio" name="options" id="option1" checked> Active
</label>
<label class="btn btn-secondary">
<input type="radio" name="options" id="option2"> Radio
</label>
<label class="btn btn-secondary">
<input type="radio" name="options" id="option3"> Radio
</label>
</div>