Answers for "how to centralize div in html"

CSS
2

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;
}
Posted by: Guest on December-10-2021
-1

centralize div css

centralize div
Posted by: Guest on July-19-2021

Code answers related to "how to centralize div in html"

Browse Popular Code Answers by Language