Advertisement
krot

placeholder style

Jun 21st, 2017
231
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.72 KB | None | 0 0
  1. <input style="width:100%" placeholder="Дата" />
  2. <style>
  3. ::-webkit-input-placeholder {color:black; opacity: 1 !important;}
  4. ::-moz-placeholder          {color:black; opacity: 1 !important;}/* Firefox 19+ */
  5. :-moz-placeholder           {color:black; opacity: 1 !important;}/* Firefox 18- */
  6. :-ms-input-placeholder      {color:black; opacity: 1 !important;}
  7. :focus::-webkit-input-placeholder {color: transparent}
  8. :focus::-moz-placeholder          {color: transparent}
  9. :focus:-moz-placeholder           {color: transparent}
  10. :focus:-ms-input-placeholder      {color: transparent}
  11. input[type="text"]{
  12.     background-color: #fcffcb;
  13.     border:0;
  14. }
  15. input[type="text"]:hover{
  16.     background-color: #fff9b1;
  17.     border:0;
  18. }
  19. </style>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement