I have a search input and I need to change the content of placeholder which is currently no, but only with css. I have tried but I can't get it...
<input id="search-input" type="search" class="search-field" placeholder="no" value="" name="s" title="Search:">
Here my wrong css:
.seach-field::placeholder{
display: none;
}
.seach-field::placeholder::after {
content: "yes";
}
pd: this is my first time on Stackoverflow, I am sorry if I didn't put it right or if I didn't post it where it should be :(