I've got:

<div class="cardDisplay">
<img class="cardImg"  id="cardImg4" alt="Card" src="picture.jpg" width="148" height="236.8" title="">
        </div>

Here's my CSS.

.cardDisplay
    {
    width: 1020px;
    background-color: #040D14;
    margin: auto;
    position: relative;
    }

.cardImg
    {
    padding:0px;
    padding-left: 40px;
    padding-right: 0px;
    /* background-color: black; */
    }   

#cardImg4
    {
    border: 20px solid white;
    padding-right: 30px: 
    }

The problem is I cannot get the, I thought, more specific ID to override the class. I've tried doing it a number of different ways with no luck. I'm using Chrome if that matters. Thanks.

link|improve this question

Possible duplicate : stackoverflow.com/questions/970730/css-id-vs-class – pradeek Nov 20 '11 at 1:23
It's not a dupe, the rule is simply ignored due to the colon, see answers below. – weltraumpirat Nov 20 '11 at 1:26
height="236.8" ? – Thanatos Nov 20 '11 at 1:47
feedback

2 Answers

up vote 4 down vote accepted

You have a colon : instead of a semi-colon ; in your padding-right style for #cardImg4. The rule probably isn't being applied at all.

link|improve this answer
Well.... that's embarrassing. Should I delete this post? At least my faith has returned in my understanding of specificity. – Dale Nov 20 '11 at 1:28
No you shouldn't delete it, it may helps others having the same bug.. – Jalal Aldeen Saa'd Nov 20 '11 at 1:34
feedback

You should be aware that you have a : not ; after the #cardimg4 padding-right. This might affect it.

link|improve this answer
imgs do have padding... – David Nguyen Nov 20 '11 at 1:25
feedback

Your Answer

 
or
required, but never shown

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