Answers for "make everything in the center of the page css bootstrap"

5

centralize div bootstrap

<div class="row align-items-center justify-content-center">
    <div class="col">This will be centered vertically and horizontally</div>
</div>
Posted by: Guest on May-29-2020
-1

how to center everything in bootstrap

// this is my code 

//this code is used to center everything in bootstrap in four direction
// and of course you can change the childern div however you like
// and give them the position that you want 

<div class="d-flex flex-column min-vh-100 justify-content-center align-items-center">
    <h1>404</h1>
    <h2>Page Not Found</h2>
    <h3>we are sorry, the page you requested could not be found, please go back to the home page</h3>
    <a href="/" class="btn btn-secondary">Go Back To Home Page</a>
</div>
Posted by: Guest on November-28-2021

Code answers related to "make everything in the center of the page css bootstrap"

Browse Popular Code Answers by Language