Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Trying to make myself a color palette and for the life of me I cannot work out why my background colors are not showing? Any suggestions? The color:red; of .one does work.

<style>
    .pallette{
        width:100px;
        height:100px;
        margin-bottom:2em;
    }

    .one{
        background:#FCFFF5;
    }

    .two{
        background:#FCFFF5;

    }

    .three{
        background:#FCFFF5;

    }

    .four{
        background:#FCFFF5;

    }

    .five{
        background:#FCFFF5;

    }
</style>

<div class="pallette one">#FCFFF5</div>
<div class="pallette two">#D1DBBD</div>
<div class="pallette three">#91AA9D</div>
<div class="pallette four">#3E606F</div>
<div class="pallette five">#193441</div>
share|improve this question

closed as too localized by Tomasz Kowalczyk, Chris Gerken, Jeffrey, Ram kiran, Nik.... Nov 28 '12 at 4:07

This question is unlikely to help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. For help making this question more broadly applicable, see the FAQ.

1 Answer

up vote 5 down vote accepted

You've set all your CSS declarations to have identical values, not those shown in your HTML.

share|improve this answer
Thanks, what a silly mistake. Thanks – In God I Trust Nov 27 '12 at 19:30

Not the answer you're looking for? Browse other questions tagged or ask your own question.