Answers for "html how to center the content"

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

Code answers related to "html how to center the content"

Browse Popular Code Answers by Language