Advertisement
Guest User

Untitled

a guest
Feb 23rd, 2019
122
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. .image {
  2. background-image: url("image.jpg")
  3. }
  4.  
  5. <span class="image" title="This is a hint.">
  6.  
  7. .image:hover:after {
  8. content:"This is a hint";
  9. }
  10.  
  11. <span class="image">
  12. <span class="hint">This is a hint</span>
  13. </span>​​​​
  14.  
  15. .image .hint {
  16. display:none;
  17. }
  18. .image:hover .hint {
  19. display:block;
  20. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement