Coloring specific buttons in Internet Explorer

0
The buttons in IE are created with the help of background images. I would like to give some buttons a different background color. In Firefox I can use the background to do that. Is it possible to assign other backgroundimages by css in IE?
asked
1 answers
0

The css for the background of buttons shouldn't be different for firefox or internet explorer. Sure your css is ok? We're using the css code below to style our buttons. This works in all browsers.

.tundra .mendix_Button_button {
    background-image: url("images/custom/mxButton.gif");
    background-repeat: repeat-x;
}

If you want to add specific styles in IE, see this

http://www.w3schools.com/cssref/pr_background-image.asp

answered