Answers for "how to center a div in the middle"

CSS
44

how to center a div in css

.center {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
Posted by: Guest on March-31-2021
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
6

how to center a div

.div {
	width: 80%;
    margin: auto;
}
Posted by: Guest on September-27-2021
0

how to center a div

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

Code answers related to "how to center a div in the middle"

Browse Popular Code Answers by Language