Advertisement
Guest User

Untitled

a guest
Aug 20th, 2017
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. <html>
  2. <head>
  3. <title>Centering with Grid</title>
  4. <style>
  5. body, html {
  6. height: 100%;
  7. display: grid;
  8. }
  9. h1.title {
  10. margin: auto;
  11. }
  12. </style>
  13. <head>
  14. <body>
  15. <h1 class="title">
  16. Hello, Paul Obunga
  17. </h1>
  18. </body>
  19. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement