When declaring margin property or padding properties which contains direction or position like TOP, BOTTOM, LEFT, RIGHT... How can I find which position the value is assigned?
For example,
h1 { margin: 25px 50px 75px; } p { padding: 25px 75px; }
I need to know which value is for left margin, right margin and so on. How to find it?