Answers for "centering something horizontally css"

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

Code answers related to "centering something horizontally css"

Browse Popular Code Answers by Language