Answers for "html css center elements"

CSS
6

centering css elements

// add to the parent element
.parent {
	display: grid;
    place-items: center;
}
Posted by: Guest on August-06-2020
4

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
0

center elemnts css

margin-left: auto;
margin-right: auto;
Posted by: Guest on September-02-2020

Browse Popular Code Answers by Language