Detailed explanation of:placeholder-shown pseudo-class in CSS
(Learning video sharing: css video tutorial)
Generally we commonly see placeholder
pseudo-class selector is used to modify the default Style and copywriting, I suddenly discovered the placeholder-shown
pseudo-class selector. The more official explanation is that the
CSS pseudo-class represents any form element that displays placeholder text.
To put it simply, when the placeholder content of the input box is displayed, what does the input box do?
Compatibility is as follows, there is no problem on mobile terminal
How does placeholder-show
work?
:placeholder-shown
CSS pseudo-class takes effect when the <input>
or <textarea></textarea>
element displays placeholder text, simply It means that placeholder will only take effect if it has a value, as shown below:
// html <input placeholder="placeholder text" /> <textarea placeholder="placeholder text"></textarea> // css input:placeholder-shown, textarea:placeholder-shown{ border:1px solid pink; }
placeholder is empty
placeholder-show has no effect:
// html <input placeholder="" /> <textarea placeholder=" text"></textarea>
:placeholder-shownSet the style of the
input element.
input:placeholder-shown { border: 1px solid pink; background: yellow; color: green; }
color: green, but it has no effect. This is because
:placeholder-shown will only target the
input itself. For actual placeholder text, the pseudo-element
::placeholder must be used.
input::placeholder { color: green; }
::placeholder-shown is applied ## The style of #placeholder
. <pre class='brush:php;toolbar:false;'>input:placeholder-shown, textarea:placeholder-shown{
font-style: italic;
text-transform: uppercase;
letter-spacing: 5px;
}</pre>
I don’t know what this is, maybe it’s because these attributes are
Inherited, if you know the reason, please leave a message and tell me, thank you. :placeholder-shown vs :empty
is an object specifically used to determine whether an element displays a placeholder. We mainly use it to checkinput
Whether the content is empty (assuming that all input
has a placeholder). You may be thinking here, is it okay to use empty
? Let's take a look. <pre class='brush:php;toolbar:false;'>// html
<input value="not empty">
<input><!-- empty -->
// css
input:empty {
border: 1px solid pink;
}
input {
border: 1px solid black;
}</pre>
It looks like
works here because we see a pink border, but this actually Doesn't workThe reason why it displays pink is because the pseudo class increases the weight of the css. Similar to class selectors (i.e.
) having higher weight than type selectors (i.e. input
). High authority selectors will always override styles set by low authority. So we can say this: Don't use
to check if the input element is empty. How to check whether the input content is empty (without dot markers)?
The only way we can check if the input is empty is to use
:placeholder-shown. But what happens if our input element has no placeholder? Here's a trick: pass in an empty string " "
. <pre class='brush:php;toolbar:false;'>// html
<input placeholder=" "><!-- pass empty string -->
//css
input:placeholder-shown {
border-color: pink;
}</pre>
Combining other selectors
We can use the
:notpseudo-class to select certain things Inverse operation. Here we can position if the input is not empty. <pre class='brush:php;toolbar:false;'>//html
<input placeholder="placeholder" value="not empty" />
// css
input:not(:placeholder-shown) {
border: 1px solid green;
}</pre>
Practical combat
Using
placeholder-shown we can achieve the following animation
# #The specific code is as follows:
Html
<div class="input"> <input class="input-fill" placeholder="邮箱"> <label class="input-label">邮箱</label> </div>Css
.input{ position: relative; } .input-fill{ border: 1px solid #ececec; outline: none; padding: 13px 16px 13px; font-size: 16px; line-height: 1.5; width: fit-content; border-radius: 5px; } .input-fill:placeholder-shown::placeholder { color: transparent; } .input-label { position: absolute; font-size: 16px; line-height: 1.5; left: 16px; top: 14px; color: #a2a9b6; padding: 0 2px; transform-origin: 0 0; pointer-events: none; transition: all .25s; } .input-fill:focus{ border: 1px solid #2486ff; } .input-fill:not(:placeholder-shown) ~ .input-label, .input-fill:focus ~ .input-label { transform: scale(0.75) translate(0, -32px); background-color: #fff; color: #2486ff; }Original address: https://www .samanthaming.com/tidbits/88-css-placeholder-shown/
Author: Samantha Ming
For more programming-related knowledge, please visit: Introduction to Programming! !
The above is the detailed content of Detailed explanation of:placeholder-shown pseudo-class in CSS. For more information, please follow other related articles on the PHP Chinese website!

There's been a run of tools, articles, and resources about color lately. Please allow me to close a few tabs by rounding them up here for your enjoyment.

Robin has covered this before, but I've heard some confusion about it in the past few weeks and saw another person take a stab at explaining it, and I wanted

I absolutely love the design of the Sandwich site. Among many beautiful features are these headlines with rainbow underlines that move as you scroll. It's not

Many popular resume designs are making the most of the available page space by laying sections out in a grid shape. Let’s use CSS Grid to create a layout that

Page reloads are a thing. Sometimes we refresh a page when we think it’s unresponsive, or believe that new content is available. Sometimes we’re just mad at

There is very little guidance on how to organize front-end applications in the world of React. (Just move files around until it “feels right,” lol). The truth

Most of the time you don’t really care about whether a user is actively engaged or temporarily inactive on your application. Inactive, meaning, perhaps they

Wufoo has always been great with integrations. They have integrations with specific apps, like Campaign Monitor, Mailchimp, and Typekit, but they also


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

DVWA
Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software

VSCode Windows 64-bit Download
A free and powerful IDE editor launched by Microsoft

MinGW - Minimalist GNU for Windows
This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.

ZendStudio 13.5.1 Mac
Powerful PHP integrated development environment

WebStorm Mac version
Useful JavaScript development tools