How To Center A Div Using CSS
In this article, we would be using the block of code below as a case study.
<div class="parent"><div class="child"></div></div>
There are 4 major ways to centre a div using CSS and they are:
Using Flexbox :
.parent {
display: flex;
justify-c...
xcelaig.hashnode.dev1 min read