Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR CSS

css absolute from center and not corner

this makes it so position absolute focuses in the middle of the element
instead of the top-left corner

.parent{
  position: relative;
}
.child-element-you-want-centered {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
 
PREVIOUS NEXT
Tagged: #css #absolute #center #corner
ADD COMMENT
Topic
Name
8+3 =