Search
 
SCRIPT & CODE EXAMPLE
 

CSS

how to make scroller show only on hover of container

.scrollbox {
  width: 100px;
  height: 100px;
  overflow: auto;
  visibility: hidden;
}

.scrollbox-content,
.scrollbox:hover,
.scrollbox:focus {
  visibility: visible;
}

.scrollbox_delayed {
  transition: visibility 0.2s;
}

.scrollbox_delayed:hover {
  transition: visibility 0s 0.2s;
}
Comment

PREVIOUS NEXT
Code Example
Css :: what does align items center do 
Css :: css children selector 
Css :: changing bakcgound color like animation using tailwind 
Css :: import font css from url 
Css :: how to disable increase descrease buttons of input type number in html 
Css :: center absolute element 
Css :: vertical and horizontal align center div 
Css :: flexbox navbar fixed top 
Css :: css size 
Css :: css put background on top of another background image 
Css :: css focus change color 
Css :: rotate box-shadow 
Css :: title underline 
Css :: text-indent 
Css :: font weight 
Css :: css font variant small caps 
Css :: css disabled tag hover style 
Css :: CSS Conic Gradients 
Css :: hover li change a color 
Css :: how to center background image in css 
Css :: css fade change coloir 
Css :: remove outline 
Css :: Border property to set the LEFT border to "dotted" 
Css :: change the weight of a bold font css 
Css :: DIVI Responsive menu breakpoints 
Css :: simple font-face mixin scss 
Css :: grid css fr width of content 
Css :: adding a perfect responsive background image 
Css :: css witdh 
Css :: Heart Shape Html And Css 
ADD CONTENT
Topic
Content
Source link
Name
2+3 =