position to the centre of a div code example
Example 1: how to center a div
.container {
...
display: flex;
justify-content: center;
}
Example 2: how to get my div to centre
.div{margin: 0 auto;}
.container {
...
display: flex;
justify-content: center;
}
.div{margin: 0 auto;}