Answers for "hide input field title show when it is filled"

0

hide input field title show when it is filled

<input class="lolan" type="text" id="name" placeholder="Full Name" required />
<label for="name" class="form__label">Click "Download" To Get Your Card</label>
Posted by: Guest on December-18-2020
0

hide input field title show when it is filled

.lolan:placeholder-shown+.form__label {
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(-4rem);
  transform: translateY(-4rem);
}
Posted by: Guest on December-18-2020

Code answers related to "hide input field title show when it is filled"

Browse Popular Code Answers by Language