Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR CSS

centering div horizontally

/*<div class="content">This works with any content</div>*/
.content {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #centering #div #horizontally
ADD COMMENT
Topic
Name
3+5 =