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

how to change input placeholder color

input::placeholder{
color:blue;
}
Comment

change placeholder color

textarea::placeholder{
	color: red;
}
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 :: terraform rds 
Css :: box-shadow left right and bottom 
Css :: outside padding css 
Css :: how to make multiple borders using box shadow in css 
Css :: font-strech css 
Css :: css animate border bottom left to right 
Css :: minimum margin css 
Css :: change font size according to screen css 
Css :: repeating-linear-gradient 
Css :: border image css 
Css :: box shadow css 
Css :: can we use multiple keyframes in css 
Css :: move bullets in css 
Css :: add shadow to background image css 
Css :: aspect-ratio css 
Css :: css conver innertext to html using css 
Css :: how to make div position top in css 
Css :: square with 2 colors css 
Css :: center css 
Css :: css add space left 
Css :: scss import class from another file 
Css :: css for paragraph beautiful 
Css :: how to change svg image color on hover using css 
Css :: hide page scrollbar css 
Css :: Override Inline Styles with CSS 
Css :: how to give opacity to border 
Css :: Vuetify v-data-table custom row hover background color (Light Theme) 
Css :: tailwind background gradient 
Css :: css image hover 
Css :: tile format css 
ADD CONTENT
Topic
Content
Source link
Name
5+3 =