Answers for "centering things in a div"

CSS
31

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
0

how to center a div

.center { 
	display: grid;
    place-items: center;
}
Posted by: Guest on January-07-2022
3

how to center a div element

/*ADD MARGIN auto to left and right*/
.box1{
    width:80%;
    margin:0 auto;
}
Posted by: Guest on August-27-2020

Browse Popular Code Answers by Language