I am working on a piece of HTML code that includes a form with a table for traveler information. However, I am having trouble ensuring that the placeholder text remains fully visible at all times.
To give you a visual example, here is what I currently have:
<form>
<table border="1">
<tr>
<td>Traveler's name:</td>
<td>
<input type="text" id="travelername" placeholder="Last Name, First Name, Middle Initial"/>
</td>
</tr>
<tr>
<td>Traveler's E-mail:</td>
<td>
<input type="email" id="traveleremail"/>
</td>
</tr>
</table>
</form>
Despite my attempts to adjust the CSS by reducing the font size and altering the width, the placeholder text remains truncated within the input field. Here is an image showing this issue:
https://i.sstatic.net/7rQi0.png
If you have any insights or solutions on how to expand/widen the placeholder text area within the input field while keeping the text fully visible, your help would be greatly appreciated!