css align text center of div code example
Example 1: center a div in css
.container {
display: flex;
justify-content: center;
align-items: center;
}
Example 2: how to center text in css
.class {
text-align: center;
}
Example 3: css align center
.center {
margin: auto;
width: 50%;
border: 3px solid green;
padding: 10px;
}