I really tries to understand whats happening with the pseudo class ::-ms-clear on input elements in IE10 in IE5 Quirks but I failed. Why is the button even displayed in IE5 Quirks and why does it in this case scale with the height of the field.
I need to get rid of the button in all cases not only in Quirks or Standards.
The below HTML does not remove the button in standards mode nor is it removevable in IE5 Quirks.
<html>
<head>
<style>
input::-ms-clear {
height:0;
width:0;
}
</style>
<body>
<span>
<input class="" type="text" value="Test">
</span>
</body
</html>
Please provide a fix.