Is there any difference between those two methods?
#myId, .myClass p, #myidTwo p:first-child a {
color;blue;
}
versus:
#myId {
color:blue;
}
.myClass p {
color:blue;
}
#myidTwo p:first-child a {
color:blue;
}
Can I target classes and ID's at the same time?