mohammed raheel 0 Posted October 5, 2015 Report Share Posted October 5, 2015 I have used -webkit-user-modify property in my CSS file. I also have a jsp that references this CSS file. The jsp has a form element. When the above property is used in the CSS file, the element < input type = " submit"> of the jsp works well on Chrome, Safari, IE , but does not work on Microsoft Edge.When I remove the above property from the CSS file, the element <input type = "submit "> of the jsp works fine on Edge.. Why is it so. And how to fix this problem Quote Link to post Share on other sites
mannemvamsi 0 Posted October 6, 2015 Report Share Posted October 6, 2015 Not sure the purpose of property -webkit-user-modify. If is to disable to submit button, you can use input property disabled. Quote Link to post Share on other sites
COBOLdinosaur 8 Posted October 6, 2015 Report Share Posted October 6, 2015 Anything that is prefixed with "-webkit" is an experimental implementation. generally for Chrome, Safari, and some versions of Opera. Normally you would expect Firefox and IE to ignore it and work fine, but edge is a new enough browser that we still don't know all the bugs, quirks, and broken pieces. It generally take Microsoft 18+ months to get all the bugs out. In any case using hyphen hacks is always a risk, because they are not necessarily to standard and are subject to change without notice. Quote Link to post Share on other sites
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.