Answers for "make inner div center"

CSS
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

how to make a div into center

.center {
margin: auto;
width: 60%;
border: 5px solid #FFFF00;
padding: 10px;
}
Posted by: Guest on October-24-2021

Browse Popular Code Answers by Language