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