Search
 
SCRIPT & CODE EXAMPLE
 

CSS

placeholder css

::-webkit-input-placeholder {color: pink;} /* Chrome/Opera/Safari */
::-moz-placeholder { color: pink;} /* Firefox 19+ */
:-ms-input-placeholder { color: pink;} /* IE 10+ */
:-moz-placeholder {color: pink;}  /* Firefox 18- */
Comment

input placeholder css

::placeholder {
  color: red;
}
Comment

input placeholder css

input::placeholder {
  color: red;
}
Comment

placeholder text css

input {
  border: 1px solid black;
  padding: 3px;
  height: 300px;
}

input:placeholder-shown {
  border-color: teal;
  color: purple;
  font-style: italic;
}
Comment

placeholder text css

input {
  border: 1px solid black;
  padding: 3px;
  height: 20px;
}

input:placeholder-shown {
  border-color: teal;
  color: purple;
  font-style: italic;
}
Comment

css style placeholder

::placeholder {
  /*styles here*/
}

:-ms-input-placeholder { /* Internet Explorer 10-11 */
  /*styles here*/
}
Comment

input placeholder css

form ::-webkit-input-placeholder {
      color: #4d4c4c;
      font-family: "Libre Franklin", sans-serif;
      font-size: 12px;
  }
  
  form :-moz-placeholder {
      color: #4d4c4c;
      font-family: "Libre Franklin", sans-serif;
      font-size: 12px;
  }
  
  form ::-moz-placeholder {
      color: #4d4c4c;
      font-family: "Libre Franklin", sans-serif;
      font-size: 12px;
  }
  
  form :-ms-input-placeholder {
      color: #4d4c4c;
      font-family: "Libre Franklin", sans-serif;
      font-size: 12px;
  }
Comment

input placeholder css

textarea::-webkit-input-placeholder {
  color: #0bf;
}

textarea:-moz-placeholder { /* Firefox 18- */
  color: #0bf;  
}

textarea::-moz-placeholder {  /* Firefox 19+ */
  color: #0bf;  
}

textarea:-ms-input-placeholder {
  color: #0bf;  
}

textarea::placeholder {
  color: #0bf;  
}
Comment

style placeholder

input placeholder text color change
Comment

PREVIOUS NEXT
Code Example
Css :: css cursor finger 
Css :: disable cursor css 
Css :: how to get all values from object in javascript 
Css :: ionchips scroll x 
Css :: sidebar fixed when scrolling down css 
Css :: css shadow border 
Css :: css center vertically 
Css :: cs and cd in jfet 
Css :: on hover chang only border color of a button css 
Css :: how to split a background into two color in css 
Css :: electron drag window 
Css :: on clicking a link it gets red color 
Css :: sass react 
Css :: css stylistic alternates 
Css :: css global variables 
Css :: remove accordion space materuail ui css 
Css :: circle button html 
Css :: crop img css 
Css :: how to change selection color 
Css :: how to add fanctoin to links in css 
Css :: texting getting out of box css 
Css :: add css file to html 
Css :: is better use px or pt 
Css :: tint image with background color css 
Css :: display inline-block not working 
Css :: image rotate css 
Css :: change color accordion arrow bootstrap 5 
Css :: style direction 
Css :: css margin top 
Css :: positioning button inside div 
ADD CONTENT
Topic
Content
Source link
Name
3+3 =