Centering elements in CSS
Centering an element or div can be notoriously hard sometimes, let's see some of the ways you can use to center an element or div in CSS.
1. Flexbox
<div class="center">
<p>centering is hard</p>
</div>
.center {
display: flex;
align-items: cent...
aryansri.hashnode.dev2 min read