Advertisement
powys

Untitled

Oct 15th, 2021
850
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.67 KB | None | 0 0
  1. <div id="cont">
  2. <img class=cont src="https://data.whicdn.com/images/343458131/original.jpg">
  3. <div id="scroll">
  4. about me info info info edit the css of this text in #scroll or make a new class ~~
  5. </div>
  6. </div>
  7.  
  8. <style>
  9. #cont {
  10. width: 300px;
  11. height: 170px;
  12. border-radius: 20px;
  13. border: 4px double #ffeaf6;
  14. padding: 0px;
  15. position: relative;
  16. overflow: hidden;
  17. }
  18.  
  19. .cont {
  20. width: 100%;
  21. height: 100%;
  22. object-fit: cover;
  23. position: absolute;
  24. }
  25.  
  26. #scroll {
  27. position: absolute;
  28. width: 94%;
  29. height: 150px;
  30. background: white;
  31. padding: 10px;
  32. border-radius: 16px;
  33. z-index: 99;
  34. top: 100%;
  35. transition: 1s ease;
  36. }
  37.  
  38. #cont:hover #scroll {
  39. top: 0%;
  40. }
  41.  
  42.  
  43.  
  44. </style>
  45.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement