I am working on creating a table that includes a field for each row along with a symbol to indicate mandatory fields. As the screen width decreases, I want the content to break into a new line at a specific point.
Desired behavior: The field width should decrease in relation to the screen size until it reaches a minimum size where it can no longer shrink. The indicator and field must always remain inline.
Below is the code I have created using Bootstrap. I need assistance with this. Let me know if you require more information.
<td style="white-space:nowrap;" class="form-inline">
<span id="${grMD.sys_id}_mandatory_span" style="color:red; font-size: large;">*</span>
<select class="form-control" name="${grMD.sys_id}_type" id="${grMD.sys_id}_type" onchange="updateSendTo(this, '${grMD.sys_id}')" required="true">
</select>
</td>