I have a problem with selecting fields in my forms. This is a single selection field, so jQuery turns it into a button that I can select to select the appropriate option. If the text of this option is quite long, the selection button becomes wider than the screen, so it is only partially visible.
I checked that jQuery is being created to display the button, and it has a set of CSS overflows: an ellipse, so when I give the specified range a fixed width smaller than the screen width, the option text is truncated using "..". "and everything looks good.
Can this behavior be triggered automatically?
the 'viewport' meta tag is set to 'width = device-width, user-scaleable = no'
source
share