css - Different colours being displayed for different versions of IE -


i facing issue css styles in ror application in ie 9 , below versions. displaying orange color (#ff5b09)when > ie 9 , in firefox, taking grey color (#666) <= ie9. need make ie 9 , below versions display orange color (#ff5b09). please suggest. new ror. appreciate on same.

css making use of filters. style related following:

.ui-sortable .lesson, .boxy-inner .block.lesson, .router .slider .lesson {     background-color: #666;     background: -webkit-gradient(linear, left top, left bottom,         from(#ff5b09), to(#f93d1e));     background: -moz-linear-gradient(top, #ff5b09, #f93d1e);     /* msie */     filter: progid:dximagetransform.microsoft.gradient(         startcolorstr='#ff5b09', endcolorstr='#f93d1e', gradienttype=0); } 

background-color: #666;

do need color(#666)?

if don't replace #ff5b09.

if need it, try this: put above statement @ end of styles, ie browser versions ignore filters , gradients once hit background-color style. so, having @ top causing issues.


Comments

Popular posts from this blog

database - VFP Grid + SQL server 2008 - grid not showing correctly -

jquery - Set jPicker field to empty value -

.htaccess - htaccess convert request to clean url and add slash at the end of the url -