Advertisement
salmancreation

placeholder style in html web desgin

Jan 25th, 2016
99
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.32 KB | None | 0 0
  1. Our next target will be the placeholder for our text box.  Vendor prefixes will be used to target specific browsers styles.
  2.  
  3.  
  4. ::-webkit-input-placeholder {
  5.     color: #fff;
  6. }
  7.  
  8. ::-moz-placeholder {
  9.     color: #fff;
  10.     opacity: 1;
  11. }
  12.  
  13. ::-ms-input-placeholder {
  14.     color: #fff;
  15.     opacity: 1;
  16. }
  17.  
  18. .placeholder {
  19.     color: #ff;
  20. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement