After trying out the suggestions provided in Remove IE10's "clear field" X button on certain inputs?
.someinput::-ms-clear {
display: none;
}
I successfully removed the X button on IE 11 running on Windows 7, but unfortunately it didn't work on IE 11 for Windows 8.1.
I then attempted the following approach:
.someinput::-ms-clear {
height: 0;
width: 0;
}
Any advice or ideas on how to remove the X button on IE 11 for Windows 8.1? Thank you!