centering things inside a div code example
Example 1: how to center anything inside your container
display: grid;
place-items: center;
height: 100vh;
Example 2: center element in div
/* html */
Centering with CSS
Text-Align Method
Margin Auto Method
Absolute Positioning Method
/* css */
h1,
h3 {
text-align: center;
}
.blue-square-container {
text-align: center;
}
.blue-square {
background-color: #0074D9;
width: 100px;
height: 100px;
display: inline-block;
}