I have some sliding door button css.. I use a button tag and two inner spans.

I have this to specify the background image of a normal button;

button span {
 background: url(button_right.png) no-repeat top right;
}

Which is the default button colour. I then have a 'gray' button (i give the button a class of 'gray').

button.gray span {
 background: url(button_right_gray.png) no-repeat top right;
}

For some reason .. IE(8) doesn't like this and ignores the gray css keeping the original image as the background. However, the following "hover" css DOES work in IE;

button.gray:hover span span {
      color: #6c6c6c;
      background-position: left -29px;
  }

I thought that 'button.gray span' has higher specificity than just 'button span' (it does in all other browsers).

EDIT: Ok, so I've discovered the problem. In my CSS declaration I had the following

button.gray span,
  button:disabled span {
background: url(button_right.png) no-repeat top right;
}

If I remove the button:disabled span from the declaration list, it works!

link|improve this question

69% accept rate
Why does the third code block have two spans? For the second code block did you try button.gray span span? – Christopher Altman Aug 5 '10 at 11:21
Because the html is like so; <button><span><span>Button Text</span></span></button> The first span is the right "cap" of the button, the second one is the left area which contains the text. – Joel Aug 5 '10 at 11:30
I just mocked up a test page using the HTML and CSS exactly as you've described here and it works fine for me in IE8. Is there something else in your CSS that could be influencing things? – Will Prescott Aug 5 '10 at 12:46
feedback

4 Answers

up vote 2 down vote accepted

IE does not support the :disabled pseudo class selector. IE's behaviour is to skip the entire rule when it encounters an invalid or unrecognised selector (which is actually in line with the specification - even if not supporting :disabled in the first place is not!), so that would explain what you're seeing.

link|improve this answer
Brilliant, thanks. Undestandable, but would have been nice if IE had warned me ;) – Joel Aug 5 '10 at 14:54
feedback

have you tried adding !important to it? i.e.

    button.gray span {
      background: url(button_right_gray.png) no-repeat top right !important;
    }
link|improve this answer
I have tried !importants too but to no avail. In the IE developer tools (I know they're a piece of s***) the .gray stuff doesn't appear AT ALL in the right CSS panel. – Joel Aug 5 '10 at 11:27
feedback

Did you try looking at the image itself? Using colours instead of images, ie8 seems to display the .gray class fine:

http://screencast.com/t/YzA4MGEx

link|improve this answer
Yeah because it works fine in firefox/chrome e.t.c. – Joel Aug 5 '10 at 13:03
feedback

As per my edit;

Ok, so I've discovered the problem. In my CSS declaration I had the following

button.gray span, button:disabled span { background: url(button_right.png) no-repeat top right; }

If I remove the button:disabled span from the declaration list, it works! What is IE's issue with button:disabled as it completely stops listening to the entire declaration?

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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