Looking for help with adjusting the placement of a placeholder text in my code:
<div class="txt-input">
<input id="txt-enter" type="text" placeholder="Enter To-Do">
</div>
The placeholder is currently stuck to the left of the border, but I want it to be positioned 10px to the right. I have a CSS file that can be used for styling purposes.
I've attempted using ::placeholder and margin-left: 10px; but those solutions didn't yield the desired results.