Code like this:
.element {
position: absolute;
left: 0;
top: 0;
right: 0;
bottom: 0;
margin: auto; /* **if i add this ,element will align center** */
}
How can left, right, top, bottom all equal 0? doesn't it mean distance equal 0? I can't understand how this CSS work.