input:not(:placeholder-shown) ~ label selector does not work with autofill

前端 未结 2 1828
死守一世寂寞
死守一世寂寞 2021-02-14 02:06

I have floating placeholder in the input field.

Placeholder will appear in center when we input value has not been provided. as shown in the below screenshot (Email and

相关标签:
2条回答
  • 2021-02-14 02:47

    It works for me

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

    You can try it

    0 讨论(0)
  • 2021-02-14 03:06

    I had the same problem. In my form, I'm using the following selectors to move my label text out of the way, on any of these 3 conditions:

    1. :focus (so it's not in the way of the cursor when focused)
    2. :not(:placeholder-shown) (indicating "the input is not empty")
    3. :-webkit-autofill (because 2 wasn't triggering on page refresh / autofill)

    The SCSS combination is:

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

    (Note that you also need a placeholder=" " on your input.)

    Here's a live example: https://codepen.io/jeffward/pen/ZdBxXd

    0 讨论(0)
提交回复
热议问题