Answers for "center a div horizontally responsive"

CSS
2

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

Code answers related to "center a div horizontally responsive"

Browse Popular Code Answers by Language