Set element to center with Bootstrap



Use class center-block to set an element to center.

You can try to run the following code to set the element to center

Example

Live Demo

<!DOCTYPE html>
<html>
   <head>
      <title>Bootstrap Example</title>
      <link href="/https/www.tutorialspoint.com/bootstrap/css/bootstrap.min.css" rel = "stylesheet">
      <script src = "/scripts/jquery.min.js"></script>
      <script src = "/bootstrap/js/bootstrap.min.js"></script>
   </head>
   <body>
      <div class = "row">
         <div class = "center-block" style = "width:200px; background-color:#ccc; color: white;">
            Element at center
         </div>
      </div>
   </body>
</html>
Updated on: 2020-06-12T14:55:02+05:30

960 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements