Answers for "how to centre align in css"

CSS
24

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

css align center

/* This works wonderfully when you know the size of
the thing you are centering. If you don’t know, or are 
thinking it might change and want to be future proof,
try this: */

.centered {
   position: fixed;
   top: 50%;
   left: 50%;
   /* bring your own prefixes */
   transform: translate(-50%, -50%);
}

/* The translate value for transform is based off the size
of the element, so that will center nicely. */
Posted by: Guest on February-19-2021
3

css align center

.center {
  margin: auto;
  width: 50%;
  border: 3px solid green;
  padding: 10px;
}
Posted by: Guest on July-14-2020

Browse Popular Code Answers by Language