How to Center Buttons in Bootstrap
Topic: Bootstrap / SassPrev|Next
Answer: Use the text-center
Class
You can simply use the built-in class .text-center
on the wrapper element to center align buttons or other inline elements in Bootstrap. It will work in both Bootstrap 3 and 4 versions.
Let's try out the following example to understand how it basically works:
Example
Try this code »<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Center Align Buttons in Bootstrap</title>
<link rel="stylesheet" href="css/bootstrap.min.css">
<script src="js/jquery-3.5.1.min.js"></script>
<script src="js/bootstrap.min.js"></script>
</head>
<body>
<div class="container bg-light">
<div class="col-md-12 text-center">
<button type="button" class="btn btn-primary">Submit</button>
<button type="button" class="btn btn-warning">Cancel</button>
</div>
</div>
</body>
</html>
Related FAQ
Here are some more FAQ related to this topic: