Search
 
SCRIPT & CODE EXAMPLE
 

CSS

how to change placeholder color

::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: red;
  opacity: 1; /* Firefox */
}

:-ms-input-placeholder { /* Internet Explorer 10-11 */
  color: red;
}

::-ms-input-placeholder { /* Microsoft Edge */
  color: red;
}
Comment

change placeholder color

textarea::placeholder{
	color: red;
}
Comment

input placeholder default color

In Chrome #a9a9a9
in Firefox #777777
Comment

how to change color of placeholder

"&::placeholder": {
      color: "#c4c4c4",
    },
Comment

placeholder color default

/* In 2021,
For Chrome */
#9ca3af
Comment

PREVIOUS NEXT
Code Example
Css :: css tricks 
Css :: css "fontweight" "font-weight" "fontWeight" 
Css :: how to use a background property in css 
Css :: input type search in css 
Css :: repeating-conic-gradient css 
Css :: css difference between class and id 
Css :: adobe xd to html and css 
Css :: Do not use empty rulesetscss(emptyRules) 
Css :: calculadora 
Typescript :: angular devkit build angular error 
Typescript :: remove &nbsp from string in typescript 
Typescript :: vscode change comments color 
Typescript :: vue pmvue.ps1 cannot be loaded because running scripts is disabled on this system 
Typescript :: ERROR in The Angular Compiler requires TypeScript =4.0.0 and <4.1.0 but 3.4.5 was found instead. 
Typescript :: drop table if it exists mysql 
Typescript :: rename table of contents latex 
Typescript :: how to select last 2 elements in a string python 
Typescript :: android studio how to draw a line 
Typescript :: how to sort a list of objects python 
Typescript :: dataframe value counts sort 
Typescript :: styled components reset 
Typescript :: npm type-check nested arrays 
Typescript :: set array of objects in localstorage 
Typescript :: serenity.is Entity service async to sync requests 
Typescript :: div contenteditable maxlength reactjs 
Typescript :: ignore typescript error 
Typescript :: remove all objects in R 
Typescript :: nest js parseint pipe usage 
Typescript :: how to know if window exists in nodejs 
Typescript :: typescript add to array 
ADD CONTENT
Topic
Content
Source link
Name
8+6 =