I found a possible bug (at least, I'm not sure what is wrong!).
I have 5 spans. All except the first have a class of total_breakdown. I gave some styling to that class, and then added specific styling to the first-child element - namely, changing the color.
.total_breakdown {
color: #727272;
font-size: 14px;
padding: 0 10px 0 2px;
}
.total_breakdown:first-child {
color:black;
}
This doesn't work - the first span with the .total_breakdown class remains the same grey as the others. Now, here is the interesting part - if I delete the first span (without the total_breakdown class name), it works fine. seems buggy to me...
For a specific example, see here
just wanted to add, I tested this on latest FF and Chrome with same results