Advertisement
miitopias

expand scrollbox

Nov 11th, 2021
226
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. <style>
  2. #scroll{
  3. transition: width 0.5s, height 1s;
  4. overflow: scroll;
  5. overflow-x: hidden;
  6. height: 90px;
  7. width: 160px;
  8. border: 1px black solid;
  9. }
  10. #scroll:hover {
  11. height: 250px;
  12. width: 240px;
  13. z-index: 2;
  14. transform-origin: 50% 50%;
  15. -moz-transition: all 0.8s;
  16. -webkit-transition: all 0.8s;
  17. }
  18. </style>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement