QUOTE(Darin McGrew @ Apr 16 2009, 10:12 PM)

If you're creating <div id="a1"> and <div id="a2"> and <div id="a3"> and so on, and you want them all to have the same CSS properties, then it might help to create a class that is shared by all these div elements. For example, you could have <div id="a1" class="a"> and <div id="a2" class="a"> and <div id="a3" class="a"> and so on. The common properties could use the class selector, and the unique properties could use the id selector.
Is that what you are asking for?
If the result of that will be that the div will conform to the class spec when i change the id - YES! I'm going to try that. Thanks.
I'll also look at Paddy's links.
Ev