css content overflow 2 scroll

w3school overflow scroll

  height: 300px;
  overflow: scroll;

Insert picture description here

When the attribute scroll is specified above, a scrolling box appears, regardless of whether the height exceeds the height.
stackoverflow: how-to-show-scroll-after-certain-height-but-height-should-not-be-fixed

.container{
  height: 263px;
  overflow-y: auto;
}
Published 126 original articles · won praise 3 · Views 4555

Guess you like

Origin blog.csdn.net/Q10CAU/article/details/105428746