Having an issue with the MS IE (version 11) when using the text-overflow: ellipsis;
property for an input
field. It appears that this specific property is not working properly in this browser.
If anyone has any suggestions or solutions, it would be greatly appreciated.
Check out the Fiddle here: https://jsfiddle.net/TjGyz/362/
input, div {
width: 100px;
border: 1px solid silver;
padding: 5px;
margin-bottom: 10px;
outline: none;
font: 20px sans-serif;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
<input type="text" value="This element is an input" />