css center content in div code example
Example 1: center a div in css
.container {
display: flex;
justify-content: center;
align-items: center;
}
Example 2: center div horizontally and vertically
.parent {
position: relative;
}
.child {
position: absolute;
left: 50%;
top: 50%;
transform: translate(-50%, -50%);
}
Example 3: center with css
.parent {
position: relative;
}
.child {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
Example 4: center text in css
.class {
text-align: center;
}
Example 5: center text in div container
text-align: center
Example 6: css align center
.center {
margin: auto;
width: 50%;
border: 3px solid green;
padding: 10px;
}