Position in CSS
The position property can help you manipulate the location of an element, for example:
.element {
position: relative;
top: 20px;
}
Relative to its original position the element above will now be nudged down from the top by 20px.
Relative is only ...
altamishturk.hashnode.dev2 min read