css position absolute center horizontal and vertical code example

Example 1: position absolute vertical center

<style>
.parent { position: relative; }
.centered-element {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
  
</style>

<div class="parent">
 <div class="centered-element">I'm Centered!</div>
</div>

Example 2: css vertical center

/* No Flexbox */
.parent {
  position: relative;
}
.child {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

/* With Flexbox */

.parent {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

Example 3: css absolute center horizontal

.parent{  position: relative;}.child{  position: absolute;  top: 50%;  left: 50%;  transform: translate(-50%, -50%);}

Tags:

Css Example