Answers for "center a div horizontaly"

CSS
1

centering div horizontally

/*<div class="content">This works with any content</div>*/
.content {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
Posted by: Guest on March-12-2022
1

how to horizontal center a div in css

#inner {
  width: 50%;
  margin: 0 auto;
}
Posted by: Guest on June-18-2020
1

center div horizontally

.inner{
margin: 0 auto;
}
Posted by: Guest on April-28-2022

Code answers related to "center a div horizontaly"

Browse Popular Code Answers by Language