Advertisement
Joeytje50

amazing ideas that should probably not be used

Mar 29th, 2021
1,087
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.38 KB | None | 0 0
  1. img {
  2.     visibility: hidden;
  3. }
  4. .image {
  5.     position: relative;
  6.     color: #ba0000;
  7. }
  8. .wgl-darkmode .image {
  9.     color: #f26d60;
  10. }
  11. .image::before {
  12.     content: attr(href);
  13.     position: absolute;
  14.     left: 0;
  15.     right: 0;
  16.     top: 0;
  17.     bottom: 0;
  18.     display: block;
  19. }
  20. .image:hover img {
  21.     visibility: visible;
  22. }
  23. .image:hover::before {
  24.     content: none;
  25. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement