Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR CSS

how to center an item without flex

.container{
position: relative;
}
.child{
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, 50%);
}
 
PREVIOUS NEXT
Tagged: #center #item #flex
ADD COMMENT
Topic
Name
5+6 =