If you have ever taken a dive into the CSS code of a layout you liked - only to find something like this:
.object {
margin: 0px auto 20px .8%;
padding: 0em 25px;
}Now first off, how many of you have ever be at a lost as to the direction you were going? Or have to think for a minute to figure out where West is from North? Even more to the point - how many of you have ever heard the old saying "Never Eat Soggy Waffles"? (No, quite that! - I didn't make it up!) Well, for all us humans without GPS systems - this saying stands for "North East South West" which is the clock-wise order of the directions.
---N---
W-----E
---S---When you see something like:
.object {
padding: 10px 25px 5px 0px;
}