Skip to content

Instantly share code, notes, and snippets.

@Andrey-web
Last active January 12, 2019 14:49
Show Gist options
  • Select an option

  • Save Andrey-web/bd512abf3a271060a04731f7dd241593 to your computer and use it in GitHub Desktop.

Select an option

Save Andrey-web/bd512abf3a271060a04731f7dd241593 to your computer and use it in GitHub Desktop.
Custom placeholder
.cont {
position:relative;
}
.placeholder {
position:absolute;
left:5px;
top:50%;
transform:translateY(-50%);
pointer-events:none;
}
.red {
color:red;
}
.form-control:focus ~ .placeholder,
.form-control:valid ~ .placeholder {
display:none;
}
<form>
<div class="cont">
<input type="text" class="form-control" required>
<div class="placeholder">Name <span class="red">*</span></div>
</div>
</form>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment