Answers for "align elements in center of a div css"

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
0

how to center a div

<center>
  <div> YOUR DIV </div>
</center>
Posted by: Guest on January-30-2022

Browse Popular Code Answers by Language