Detailed explanation of:placeholder-shown pseudo-class in CSS

青灯夜游
Release: 2021-01-14 18:49:13
forward
2236 people have browsed it

Detailed explanation of:placeholder-shown pseudo-class in CSS

(Learning video sharing:css video tutorial)

Generally we commonly seeplaceholderpseudo-class selector is used to modify the default Style and copywriting, I suddenly discovered theplaceholder-shownpseudo-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

Detailed explanation of:placeholder-shown pseudo-class in CSS

How does placeholder-showwork?

:placeholder-shownCSS pseudo-class takes effect when theorelement displays placeholder text, simply It means that placeholder will only take effect if it has a value, as shown below:

// html   // css input:placeholder-shown, textarea:placeholder-shown{ border:1px solid pink; }
Copy after login

Detailed explanation of:placeholder-shown pseudo-class in CSS

##If

placeholderis emptyplaceholder-showhas no effect:

// html  
Copy after login

Detailed explanation of:placeholder-shown pseudo-class in CSS

:placeholder-shown vs ::placeholder

We can use

:placeholder-shownSet the style of theinputelement.

input:placeholder-shown { border: 1px solid pink; background: yellow; color: green; }
Copy after login

Detailed explanation of:placeholder-shown pseudo-class in CSS

Note some weird issues - we set

color: green, but it has no effect. This is because:placeholder-shownwill only target theinputitself. For actual placeholder text, the pseudo-element::placeholdermust be used.

input::placeholder { color: green; }
Copy after login

Detailed explanation of:placeholder-shown pseudo-class in CSS

I noticed that there are some other properties that will also be affected if

::placeholder-shownis applied ## The style of #placeholder.

input:placeholder-shown, textarea:placeholder-shown{ font-style: italic; text-transform: uppercase; letter-spacing: 5px; }
Copy after login

Detailed explanation of:placeholder-shown pseudo-class in CSSI don’t know what this is, maybe it’s because these attributes are

placeholder

Inherited, if you know the reason, please leave a message and tell me, thank you.:placeholder-shown vs :empty

:placeholder-shown

is an object specifically used to determine whether an element displays a placeholder. We mainly use it to checkinputWhether the content is empty (assuming that allinputhas a placeholder). You may be thinking here, is it okay to useempty? Let's take a look.

// html <input value="not empty"> <input><!-- empty --> // css input:empty { border: 1px solid pink; } input { border: 1px solid black; }
Copy after login

Detailed explanation of:placeholder-shown pseudo-class in CSSIt looks like

empty

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.

.form-input

) 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

:empty

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" ".

// html <input placeholder=" "><!-- pass empty string --> //css input:placeholder-shown { border-color: pink; }
Copy after login

Detailed explanation of:placeholder-shown pseudo-class in CSSCombining other selectors

We can use the

:not

pseudo-class to select certain things Inverse operation. Here we can position if the input is not empty.

//html <input placeholder="placeholder" value="not empty" /> // css input:not(:placeholder-shown) { border: 1px solid green; }
Copy after login
Practical combat

Using

placeholder-shown

we can achieve the following animation

Detailed explanation of:placeholder-shown pseudo-class in CSS# #The specific code is as follows:

Html

Copy after login
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; }
Copy after login
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!

Related labels:
source:segmentfault.com
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!