to centre each content in html

Solutions on MaxInterview for to centre each content in html by the best coders in the world

showing results for - "to centre each content in html"
Andrea
07 Sep 2016
1section {
2    width: 100%;
3    height: 100vh;
4    background-color: teal;
5    display: flex;
6    flex-direction: column;
7    align-items: center;
8    justify-content: space-evenly;
9}