1.container {
2 display: flex;
3 justify-content: center;
4 align-items: center;
5}
1.parent {
2 position: relative;
3}
4.child {
5 position: absolute;
6 left: 50%;
7 top: 50%;
8 transform: translate(-50%, -50%);
9}
1.parent {
2 display: flex;
3 justify-content: center;
4 align-items: center;
5}
1//Center DIV HTML5
2
3<body>
4 <div style="width:800px; margin:0 auto;">
5 centered content
6 </div>
7</body>