Quote:
Originally Posted by Custard7A
You are adding multiple classes in your HTML — as separated by spaces — but you don't need to reference the classes you're using together in the CSS.
|
Besides that, what the OP wrote is perfectly legal and should work. However, I see this:
Code:
<div class="promo_container"></div>
<div class="promo one">
…
…
So this:
.promo_container .promo {…} will never apply since the promos are not descendants of promo_container.