You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Looks like there hasn't been any work done on this project for quite a while; has it been abandoned? Either way, just for future reference...
I recently ran into this same issue, but I don't think it's really something that can be "fixed" in this project directly. A nice solution (as explained in this SO answer), is to add the following rules to your application:
fieldset {
min-width: 0; // for webkit browsers
display: table-cell; // for gecko browsers
}
Obviously, there are some IE caveats here, but that's also explained in the SO answer linked above.
There is a scenario where the affected textarea (and hidden pre tag) will expand to the width of its content, without wrapping.
Prerequisites:
Result:
Affected textarea (and hidden pre tag) will expand to a width as long as the content.
Problem:
Webkit puts a default style of
min-width: -webkit-min-content;
on a<fieldset>
.Personal Resolution:
min-width
to0
on the culprit fieldset.Note:
Excellent plugin. Best I found, and there are many options.
The text was updated successfully, but these errors were encountered: