When I navigate to the input field using the tab key or by clicking inside it, I would like my cursor to start a few spaces away from the left border. Here is the code snippet:
<input id="visiblevalue" type="text" name="value" placeholder=" Value" value="" required="required" onblur="if(this.value == ' ') this.placeholder = ' Value'" onkeydown="return isNumber(event);" />