This content originally appeared on Manuel Matuzović - Blog and was authored by Manuel Matuzović
You can use the :placeholder-shown
pseudo-class to select input fields with a placeholder that haven't been filled out yet.
input:placeholder-shown {
outline: 5px solid blue;
}
<p>
<label for="name">Name</label>
<input type="text" id="name" placeholder="your name…" value="Johanna">
</p>
<p>
<label for="email">E-Mail</label>
<input type="email" id="email" placeholder="name@domain.com">
</p>
PS: Yeah, I know, that one has been around for quite a while already, but I started writing CSS 15 years ago. So anything that was published after 2015 is modern CSS for me. :)
My blog doesn't support comments yet, but you can reply via blog@matuzo.at.
This content originally appeared on Manuel Matuzović - Blog and was authored by Manuel Matuzović
Manuel Matuzović | Sciencx (2022-10-20T00:00:00+00:00) Day 19: the placeholder-shown pseudo-class. Retrieved from https://www.scien.cx/2022/10/20/day-19-the-placeholder-shown-pseudo-class-2/
Please log in to upload a file.
There are no updates yet.
Click the Upload button above to add an update.