Answers for "html how to align everything to center in body"

CSS
0

html center body

body {
  display:flex; flex-direction:column; justify-content:center;
  min-height:100vh;
}
Posted by: Guest on July-28-2020
0

make all the content of body in center in html

html, body {height:100%;}
html {display:table; width:100%;}
body {display:table-cell; text-align:center; vertical-align:middle;}
Posted by: Guest on March-05-2022

Code answers related to "html how to align everything to center in body"

Browse Popular Code Answers by Language