<input
class="form-control"
style="width: 15rem; height: 15rem;"
v-model="formData.booking_code"
placeholder="Enter Booking Code, e.g. XYBJLL"
/>
I am facing an issue where the placeholder text in my input field is too long and it overflows the box, causing it to get cut off.
Is there a way to make the placeholder text automatically continue to the next line when it reaches the edge of the input field?
I would prefer not to use a text area as it can't be vertically aligned like an input field.