Answers for "how to move a class to center in css"

23

center with css

.parent {
  position: relative;
}
.child {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
Posted by: Guest on January-03-2020
0

html center body

body {
max-width: max-content;
margin: auto;
}
Posted by: Guest on July-28-2020

Code answers related to "how to move a class to center in css"

Browse Popular Code Answers by Language