Advertisement
hosptials

hover text

Nov 2nd, 2021
459
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.63 KB | None | 0 0
  1. <style>
  2. #text04 , #text06 , #text03 { /*info text with white bg*/
  3. background: #FFFFFFB0;
  4. border-radius: 8px;
  5. overflow: scroll;
  6. transition: 1s;
  7. height:65px;
  8. padding:4px;
  9. }
  10.  
  11. #text04:hover {
  12. transform:scale(1.3);
  13. width:100%;
  14. overflow:auto;
  15. position:relative;
  16. transition:1s;
  17. z-index:99;
  18. border: 1px dotted #dba276;
  19. }
  20.  
  21. #text06:hover {
  22. transform:scale(1.3);
  23. width:100%;
  24. overflow:auto;
  25. position:relative;
  26. transition:1s;
  27. z-index:99;
  28. border: 1px dotted #dba276;
  29. }
  30.  
  31. #text03:hover {
  32. transform:scale(1.3);
  33. width:100%;
  34. overflow:auto;
  35. position:relative;
  36. transition:1s;
  37. z-index:99;
  38. border: 1px dotted #dba276;
  39. }
  40. </style>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement