Avoiding table/column width changes #13
Loading…
x
Reference in New Issue
Block a user
No description provided.
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
on form open/close
on drag and drop table header change
option 1: Set form input/teaxarea width using CSS width:100% + min-width:Xem, so it will fill full width while maintaining some reasonable minimal size. Cannot be done with input/textarea
size
attribute.option 2: set CSS
min-width
from HTMLsize
/cols
attributes usingattr()
? Or setmin-width
on column andwidth: 100%
on inputs to size to column width.Set form input/teaxarea width using CSS width:100% + min-width:Xemto Avoiding table/column width changes