Latest comments
- @AimarBustamante
- @mexuz@Serg1oxD
body{ display: flex; flex-flow: column wrap; justify-content: center; align-items: center; min-height: 100vh; margin: 0; }
If you add to body this styles and later add a element with HTML every new element will go to the center of the screen.
And It's a good practice to have the styles in separate files, I recommend you create one .html file and one .css file and later link the .css using
<link rel="stylesheet" href"path.css">
in .html fileMarked as helpful