how to center elements in css code example
Example 1: center a div in css
.container {
display: flex;
justify-content: center;
align-items: center;
}
Example 2: css align items vertical center
.parent {
display: flex;
justify-content: center;
align-items: center;
}
Example 3: css center
.parent {
display: flex;
justify-content: center;
align-items: center;
}
Example 4: css vertical center
.parent {
position: relative;
}
.child {
position: absolute;
top: 50%;
transform: translateY(-50%);
}
.parent {
display: flex;
flex-direction: column;
justify-content: center;
}
Example 5: centering css elements
// add to the parent element
.parent {
display: grid;
place-items: center;
}
Example 6: css center text
.centerText {
text-align: center;
}