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 = "/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>

karthikeya Boyini
karthikeya Boyini

I love programming (: That's all I know

Updated on: 12-Jun-2020

839 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements