Answers for "a div at center css"

CSS
0

how to center a div

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

how to center a div

.center {
  margin: auto;
  width: 50%;
  border: 3px solid green;
  padding: 10px;
}
Posted by: Guest on July-14-2020

Browse Popular Code Answers by Language