Answers for "position absolut horizonatl cente"

0

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>
Posted by: Guest on October-01-2020
2

center div absolute

#content {
  position: absolute; 
  left: 0; 
  right: 0; 
  margin-left: auto; 
  margin-right: auto; 
  width: 100px; /* Need a specific value to work */
}
Posted by: Guest on February-12-2020

Browse Popular Code Answers by Language