tüm tarayıcılar için button border outline sorunu


/ Published in: CSS
Save to your folder(s)



Copy this code and paste it in your HTML
  1. *|*:-moz-any-link:focus {
  2. outline: none;
  3. }
  4.  
  5. *|*:focus
  6. {
  7. outline: none;
  8. }
  9.  
  10. button, input[type="reset"], input[type="button"], input[type="submit"] {
  11. outline: none;
  12. }
  13.  
  14. button::-moz-focus-inner,
  15. input[type="reset"]::-moz-focus-inner,
  16. input[type="button"]::-moz-focus-inner,
  17. input[type="submit"]::-moz-focus-inner,
  18. input[type="file"] > input[type="button"]::-moz-focus-inner {
  19. padding: 0px 2px 0px 2px;
  20. border: 1px dotted transparent;
  21. }

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.