Can anyone help me figure out how to display a single line of text with three dots (...) if it exceeds the width of the container?
I've tried using the CSS code below, which works on Mozilla and Chrome, but for some reason, it's not working on IE 11.
display: block;
overflow: hidden;
text-overflow: ellipsis;
padding-right: 20px;
If anyone knows whether this issue is related to the IE 11 version or if there's a solution to make it work, please let me know.