Cheers
18
Q:

html center body

.class {
	text-align: center;
}
19
.centered {
  position: fixed;
  top: 50%;
  left: 50%;
  /* bring your own prefixes */
  transform: translate(-50%, -50%);
}
4
body {
  display:flex; flex-direction:column; justify-content:center;
  min-height:100vh;
}
0
body {
max-width: max-content;
margin: auto;
}
0
body {
  text-align: center;
}
0

  <style>
.content {
  max-width: 500px;
  
  margin: auto;
}
</style>

  <body>

<div class="content">
  <!-- Page content -->
</div>

</body> 
3

New to Communities?

Join the community