Say one has multiple link schemes on a page with CSS.
1. Would it be more efficient/logical to use classes for each scheme?
OR
2. To call the links by stating their parent container?
1.
2.
[Edited by knystrom19 on 16-Dec-09 13:11]
1. Would it be more efficient/logical to use classes for each scheme?
OR
2. To call the links by stating their parent container?
1.
a:link.links1 {
color #123456;
}
2.
#links2 a:link {
color: #645321
}
[Edited by knystrom19 on 16-Dec-09 13:11]


