Advertisement
Guest User

Untitled

a guest
Oct 22nd, 2019
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.51 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <style>
  5.  
  6. .remove {
  7. background-color: #f44336;
  8. color: white;
  9. border: 2px solid #f44336;
  10. padding: 4px 8px;
  11. text-align: center;
  12. text-decoration: none;
  13. display: inline-block;
  14. font-size: 12px;
  15. margin: 4px 2px;
  16. -webkit-transition-duration: 0.4s; /* Safari */
  17. transition-duration: 0.4s;
  18. cursor: pointer;
  19. }
  20.  
  21. .remove:hover {
  22. background-color: white;
  23. color: black;
  24. }
  25.  
  26. </style>
  27. </head>
  28. <body>
  29.  
  30. <button class="remove">X</button>
  31.  
  32. </body>
  33. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement