Answers for "how to center items in div css"

CSS
2

how to center a div

.div-object {
	display: grid;
    place-items: center;
}
Posted by: Guest on March-06-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