Tagged Questions
11
votes
12answers
3k views
How to remember in CSS that margin is outside the border, and padding inside
I don't edit CSS very often, and almost every time I need to go and google the CSS box model to check whether padding is inside the border and margin outside, or vice versa. (Just checked again and ...
6
votes
13answers
961 views
A mnemonic for the order of CSS margin and padding shorthand properties
I can never remember the order of the shorthand property for setting the margin or padding in one declaration. That is:
margin-top: 2px;
margin-bottom: 4px;
margin-left: 3px;
margin-right: 8px;
...
0
votes
4answers
122 views
CSS Mnemonics: How do you remember whether # or . is for class or id?
#test is the selector for id="test"
.test is the selector for class="test"
but how do you remember which way round they are (eg not .=id)