Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR CSS

How to center a div

div {
    width: 100px;
    height: 100px;
    background-color: red;
    
    position: absolute;
    top:0;
    bottom: 0;
    left: 0;
    right: 0;
    
    margin: auto;
}
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #How #center #div
ADD COMMENT
Topic
Name
5+1 =