css - Extremely weird behaviour with disabled elements in IE (localhost vs web server) -
i have disabled elements on page. when run app in vs2012, disabled elements looking want in ie (8-10) (not chrome i'll @ later):
notice burgundy text. now, deploy web server. css present , text gray:
here's css:
input[disabled] { border: 1px solid #999; color:#933 !important; background-color:#c1c1c1; }
here's how i'm setting input disabled
$('#btnremovepacks').prop('disabled', true);
why css work when i'm running in localhost , not when deploy web server?
Comments
Post a Comment