With this code (jsbin here) the initial of placeholder text in the password field is pushed to the right, but once you click inside the input padding vanishes and you get correct alignment. What is causing this, and what needs be reset?

Screenshot

Markup:

<input type="text" placeholder="Email"/>
<input type="password" placeholder="Password"/>

CSS:

input {
  font-family: monospace;
  font-size: 20px;
  width: 250px;
}
有帮助吗?

解决方案

You can use text-align: left for placeholder pseudo-class to make sure that it's displayed on the web browser correctly at the left.

For the Webkit web browsers (Chromium in this case):

::-webkit-input-placeholder {
    text-align: left;
}
许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top