Indent text cursor for input textbook
How to indent the text cursor of the textbox:
I used the following CSS code:
text-indent:8px;
But the first time the textbox开发者_如何学编程 is focused the indent doesn't apply, it only applies when someone types. Is there another way to fix that?
You will have to use padding-left
instead :)
padding-left:8px;
精彩评论