Answers for "how to center all div in a div"

CSS
37

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
-1

how to centre a div

.class-name {
	display:flex;
    justify-content:centre;
    align-items:centre;
}
Posted by: Guest on October-12-2021

Browse Popular Code Answers by Language