How to remove extra space between ellipsis and text in Firefox

Viewed 68

I have a plain input where I want to have an ellipsis. But for some reason, there is extra space between text and ellipsis in Firefox. I suggest that the browser can't display the whole character that follows next and left space for it. You can notice this by increasing the width of the input by 1px at a time. In other browsers, there is no such problem. Is there any solution how to get rid of that space?

input {
  width: 110px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
<input type="text" value="Lorem ipsum dolor sit amet">

enter image description here

0 Answers
Related