Answers for "how to center an item using css"

CSS
44

center a div css

.center {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
Posted by: Guest on March-31-2021
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

Code answers related to "how to center an item using css"

Browse Popular Code Answers by Language