Advertisement
Thewest123

Bootstrap5 horizontal+vertical center

Jun 11th, 2022
1,018
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.59 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="en">
  3.     <head>
  4.         <meta charset="utf-8" />
  5.         <meta name="viewport" content="width=device-width, initial-scale=1" />
  6.         <title>Bootstrap demo</title>
  7.         <style>
  8.             @import url("https://cdnjs.cloudflare.com/ajax/libs/bootstrap/5.0.1/css/bootstrap.min.css");
  9.             html,
  10.             body {
  11.                 height: 100%;
  12.             }
  13.         </style>
  14.     </head>
  15.     <body>
  16.         <div class="h-100 d-flex align-items-center justify-content-center">
  17.             <h1>Hello, world!</h1>
  18.         </div>
  19.     </body>
  20. </html>
  21.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement