Answers for "to centre each content in html"

0

to centre each content in html

section {
    width: 100%;
    height: 100vh;
    background-color: teal;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
}
Posted by: Guest on September-10-2021

Browse Popular Code Answers by Language