Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR CSS

overflow scrollbar with variable height

/* The element which contains one/many content sections */
.container {
  display: flex;
  flex-direction: column;
}

/* The container's content you want to add an overflow to */
.container .scrollable-content {
  flex-grow: 1;  
  overflow: auto;
}
 
PREVIOUS NEXT
Tagged: #overflow #scrollbar #variable #height
ADD COMMENT
Topic
Name
7+7 =