I dynamically created an online table with node js in which some cells are for text input i.e.
$tbody.append(`<tr><td><input type="text"></td></tr>`);
I want to wrap long text similar to the Excel wrap function, I tried word-wrap, etc., seems not to apply to the input type. If that's no possible then how about stretching column (width)? basically I want Excel like effect so some cells w/ long text can be visible.