I want to test my placeholder style in chrome devtools but can't find it.
I tried to use the "Toggle Element State" but it provides only
- :hover
- :active
- :focus-within
- :focus
- :visited
These are my css lines:
.inputs-wrapper input[type="text"]::placeholder ,
.inputs-wrapper input[type="tel"]::placeholder{
font-weight:900;
color:black;
}
html:
<div class="inputs-wrapper">
<input type="text" placeholder="שם מלא"/>
<input type="tel" placeholder="טלפון"/>
<input type="submit" value="המשך > " />
</div>