Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR CSS

how to center div in block container

display: inline-block;
  position: relative;
  /* Move the element to the right by 50% of the container's width */
  left: 50%; 
  /* Calculates 50% of the element's width, and moves it by that */ 
  /* amount across the X-axis to the left */
  transform: translateX(-50%);
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #center #div #block #container
ADD COMMENT
Topic
Name
9+1 =