Different CSS for IE6、IE7、IE8、Firefox
symbol:「\9」、「*」、「_」
#tip {
background:blue; /*Firefox background to blue*/
background:red \9; /*IE8 red*/
*background:black; /*IE7 black*/
_background:orange; /*IE6 orange*/
}
symbol:「\9」、「*」、「_」
#tip {
background:blue; /*Firefox background to blue*/
background:red \9; /*IE8 red*/
*background:black; /*IE7 black*/
_background:orange; /*IE6 orange*/
}