Answers for "move bootstrap toggle button"

0

move button to right bootstrap

<!-- Create a div with class text-right and add a button inside that div -->
<div class="text-right">
    <input type="button" class="btn btn-info" value="Next">
</div>
Posted by: Guest on June-03-2021
1

bootstrap buttons Toggle states

Add data-toggle="button" to toggle a button’s active state. If you’re 
pre-toggling a button, you must manually add the .active class and
aria-pressed="true" to the <button>.

<button type="button" class="btn btn-primary" data-toggle="button" aria-pressed="false">
  Single toggle
</button>
Posted by: Guest on October-23-2020

Code answers related to "move bootstrap toggle button"

Browse Popular Code Answers by Language