hide input field title show when it is filled

Solutions on MaxInterview for hide input field title show when it is filled by the best coders in the world

showing results for - "hide input field title show when it is filled"
Tiger
24 Apr 2018
1.lolan:placeholder-shown+.form__label {
2  opacity: 0;
3  visibility: hidden;
4  -webkit-transform: translateY(-4rem);
5  transform: translateY(-4rem);
6}
Valerio
18 Jun 2016
1<input class="lolan" type="text" id="name" placeholder="Full Name" required />
2<label for="name" class="form__label">Click "Download" To Get Your Card</label>