Hello, I'm looking for a way to create several A styles in the same stylesheet. If I do: a { font-weight: bold;} it'll change all the links to bold. I want to be able to change it depending on what DIV the links are in. How may I do this?
Give the div an id, such as <div id="thisdiv">. Then your css for that div will be #thisdiv a {css stuff}.