Answers for "how to align in center in css"

CSS
2

center in css

.centre {
    display: flex;
    flex-direction: column;
    align-items: center;
    /* it center the item vertically */
    justify-content: center;
    /* it center the item horizontally */
}
Posted by: Guest on May-29-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
-1

center in css

.center {
    margin: auto;
}
Posted by: Guest on May-29-2021

Code answers related to "how to align in center in css"

Browse Popular Code Answers by Language