input:not(:placeholder-shown)〜标签选择器不适用于自动填充

时间:2019-03-30 03:51:02

标签: css css3 css-selectors placeholder pseudo-class

我在输入字段中有浮动占位符。

当我们没有提供输入值时,占位符将出现在中心。如以下屏幕截图所示(电子邮件和密码为占位符)。

enter image description here

现在,当您提供电子邮件值时,它确实如下所示。观察到提供值后电子邮件和密码已被拉起

enter image description here

当浏览器从页面加载时保存的凭据(例如用户名,电子邮件,密码等)开始自动填充/自动完成此值时,会发生问题。请参见下面的屏幕截图:

enter image description here

css

:root {
  --input-padding-x: .75rem;
  --input-padding-y: .75rem;
}

html,
body {
  height: 100%;
}

.form-signin {
  width: 100%;
  max-width: 600px;
  padding: 15px;
  margin: auto;
  padding-top: 40px;
  padding-bottom: 40px;
}

.form-label-group {
  position: relative;
  margin-bottom: 1rem;
}

.form-label-group > input,
.form-label-group > label {
  padding: var(--input-padding-y) var(--input-padding-x);
}

.form-label-group > label {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  margin-bottom: 0; /* Override default `<label>` margin */
  line-height: 1.5;
  color: #495057;
  border: 1px solid transparent;
  border-radius: .25rem;
  transition: all .1s ease-in-out;
}

.form-label-group input::-webkit-input-placeholder {
  color: transparent;
}

.form-label-group input:-ms-input-placeholder {
  color: transparent;
}

.form-label-group input::-ms-input-placeholder {
  color: transparent;
}

.form-label-group input::-moz-placeholder {
  color: transparent;
}

.form-label-group input::placeholder {
  color: transparent;
}

.form-label-group input:not(:placeholder-shown) {
  padding-top: calc(var(--input-padding-y) + var(--input-padding-y) * (2 / 3));
  padding-bottom: calc(var(--input-padding-y) / 3);
}

.form-label-group input:not(:placeholder-shown) ~ label {
  padding-top: calc(var(--input-padding-y) / 3);
  padding-bottom: calc(var(--input-padding-y) / 3);
  font-size: 12px;
  color: #777;
}

HTML

<form class="form-signin">
    <h1 class="h3 mb-3 font-weight-normal">Please Type new password</h1>
    <div class="form-label-group">
        <input type="text" id="inputEmail" [(ngModel)]="email" name="email" class="form-control" placeholder="Email" required=""
            autofocus="">
        <label for="inputEmail">Email</label>
    </div>

    <div class="form-label-group">
        <input type="password" id="inputPassword" [(ngModel)]="password" name="password" class="form-control" placeholder="Password"
            required="">
        <label for="inputPassword">Password</label>
    </div>

    <div class="row">
      <div class="col-sm-6">
        <button class="btn btn-lg btn-primary btn-block" (click)="onSubmit()" type="button">Change password</button>
      </div>
    </div>
</form>

我已经尝试过自动关注电子邮件字段,但是那没有用。 我还尝试在页面加载后从代码中单击元素,但是没有运气。请帮助我如何解决此问题。

2 个答案:

答案 0 :(得分:1)

对我有用

.form-label-group input:-webkit-autofill ~ label {
        /* CSS property  */
}

您可以尝试

答案 1 :(得分:0)

我有同样的问题。在我的表单中,在以下三种情况中的任何一种情况下,我都使用以下选择器将标签文本移开:

  1. :focus(因此聚焦时不会妨碍光标)
  2. :not(:placeholder-shown)(指示“输入不为空”)
  3. :-webkit-autofill(因为2并未触发页面刷新/自动填充)

SCSS组合为:

input {
  &:focus, &:not(:placeholder-shown), &:-webkit-autofill {
    &+label { /* Move your label */ }
  }
}

(请注意,您还需要在输入上输入placeholder=" "。)

这是一个实时示例:https://codepen.io/jeffward/pen/ZdBxXd