Currently, I have an input field with a placeholder that contains both English and Spanish text. My challenge is aligning the English text to the left and the Spanish text to the right within the placeholder. Here's an example of what I'm currently doing:
Example:
<input type="text" nam="name" placeholder="Name Nombre" >
I attempted to use non-breaking spaces (nbsp) in my code, but when viewed on another window or in responsive mode, the text either overflows or does not align properly. Can someone please provide guidance on how to correctly align text within a placeholder to the left and right? Thank you for your assistance.