Forum Moderators: not2easy
div#links a {
font-weight: bold;
color: #009966;
font-size: 12px;
text-decoration: underline;
}
and I want it to also apply to div id=links2
do I have to add this
div#links2 a {
font-weight: bold;
color: #009966;
font-size: 12px;
text-decoration: underline;
}
or can I combine the two e.g. something like
div#links a links2 a
?