#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)

link|improve this question

75% accept rate
9  
It's one of the most commonly used bits of CSS. You can learn through repetition. I don't need a mnemonic. – Quentin Feb 20 '11 at 18:48
7  
The same way how you remember that 2 comes after 1, and 3 comes after 2, etc. ... or that the past form of "do" is "did", ... – Šime Vidas Feb 20 '11 at 18:52
2  
What these guys said. If you need a gimmick to remember this basic CSS syntax, you're probably not going to get very far in the software world. Sorry. – Lightness Races in Orbit Feb 20 '11 at 18:56
1  
(In all seriousness, though, think of "Platform #3" or "Book #19" .. there's only one. It's an identifier, or "id".) – Lightness Races in Orbit Feb 20 '11 at 18:57
1  
I'm pleased for you all that you can remember something. I wasn't asking for personal attacks, just a mnemonic. I don't spend enough time a year with CSS (thank god) to warrant committing this to my long-term memory. Finite capacity, and all. – servermanfail Feb 22 '11 at 8:39
show 2 more comments
feedback

4 Answers

up vote 2 down vote accepted

Well, in truth these things are so common that most people don't need mnemonics to remember them, but here's something I came up with, if it helps:

In terms of a filename a . and then an extension denotes a type of thing. There can be many different things of this type. With CSS, using classes you can denote a single style for many elements of the same type.

In terms of a URL, a # denotes an anchor link to a specific spot in the document. It refers to one location only. With CSS, using IDs you denote a single style for a single specific element.

link|improve this answer
Thanks, I will use yours. You answered both the questions. – servermanfail Feb 22 '11 at 8:40
feedback

I learned it the same way I learned that quotes (rather than parentheses) are used for attributes' values — by typing them a couple of times.

If you or someone you know gets tripped up by # vs ., though, consider that many programming languages use a . to access the members of an class-typed object.

link|improve this answer
Of course! smacks head I was stuck thinking that # was a channel - like a Twitter hash tag (goes to a group), or an IRC channel (group of people). – servermanfail Feb 22 '11 at 8:43
feedback

Spend lots of time writing CSS. When you've got it wrong enough times, your brain will give in and retain it.

link|improve this answer
Thanks, would you like to pay me for spending lots of time writing CSS, as I do not enjoy it and limit myself in terms of minutes per year. – servermanfail Feb 22 '11 at 8:43
feedback

When it comes to designing page I tend to write all elements that appear once into ID's and elements that may come many times into Classes.

For example: <div id="page-header"> and <div class="post">

link|improve this answer
Remember to use the back-ticks to define your inline-code blocks. And, I'm not convinced that this answers the question at all. – David Thomas Feb 20 '11 at 19:04
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.