Skip to content
Related Articles
Get the best out of our app
GeeksforGeeks App
Open App
geeksforgeeks
Browser
Continue

Related Articles

How to align button to right side of text box in Bootstrap?

Improve Article
Save Article
Like Article
Improve Article
Save Article
Like Article

Bootstrap allows us to align elements by using the utility class float. As we want to align the button to the right side of the text box, we have to use the float-right class. 
Syntax: 
 

<button class="btn btn-success btn-lg float-right" type="submit">Submit</button>

Example: 
 

html




<!DOCTYPE html>
<html>
 
<head>
    <title>Bootstrap Button Alignment</title>
    <meta charset="utf-8">
    <meta name="viewport"
          content="width=device-width, initial-scale=1">
    <link rel="stylesheet"
          href=
    <script src=
  </script>
    <script src=
    </script>
    <script src=
    </script>
</head>
 
<body>
    <div class="container">
        <h1 style="text-align:center;color:green;">
          GeeksforGeeks
      </h1>
        <form>
            <div class="form-group">
                <label for="">Enter Your Name:</label>
                <input class="form-control"
                       type="text"
                       placeholder="Input Your Name Here">
            </div>
            <div class="form-group">
                <button class="btn btn-success btn-lg float-right"
                        type="submit">
                     Submit
                </button>
            </div>
        </form>
    </div>
</body>
 
</html>

Output: 
 

Note: Although by default, elements like buttons, are left-aligned still we can use float-left class to mention it specifically. We can also use the class float-none to remove any hierarchical floating. 
It is important to note that we are using Bootstrap 4 here, in Bootstrap 3 or Bootstrap 2 we can use the helper classes like pull-left, pull-right to align the elements to the left or right accordingly.
 


My Personal Notes arrow_drop_up
Last Updated : 18 Aug, 2021
Like Article
Save Article
Similar Reads
Related Tutorials