CSS - how to dry up?

Posted by keruilin on Stack Overflow See other posts from Stack Overflow or by keruilin
Published on 2010-05-24T00:53:26Z Indexed on 2010/05/24 1:00 UTC
Read the original article Hit count: 243

Filed under:

Is there a way to DRY this CSS up? Only difference is color?

div.base-text-gold {
    position: absolute; bottom: 9px; color: #FED577; font-size: 10px;
    font-weight: bolder; text-align: center; width: 61px; text-transform: uppercase;
}

div.base-text-grey {
    position: absolute; bottom: 9px; color: #D1D2D4; font-size: 10px;
    font-weight: bolder; text-align: center; width: 61px; text-transform: uppercase;
}

© Stack Overflow or respective owner

Related posts about css