Guest User

Untitled

a guest
May 24th, 2018
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 KB | None | 0 0
  1. <label>Text</label>
  2. <span class="validation-border"><input class="validation" type="Text"></input></span>
  3. <label>Some text</label><input ></input>
  4.  
  5. .validation:not(:focus) {
  6. -webkit-filter: blur(3px);
  7. filter: blur(3px);
  8. border:0;
  9. }
  10.  
  11. .validation-border{
  12. border: 1px black solid;
  13. z-index:20;
  14. }
  15.  
  16. <div class="input-like">
  17. <input>
  18. </div>
  19.  
  20. .validation {
  21. border:0px;
  22. }
  23.  
  24. .validation:focus {
  25. outline:none;
  26. }
Add Comment
Please, Sign In to add comment