css 内容溢出2 scroll

w3school overflow scroll

  height: 300px;
  overflow: scroll;

在这里插入图片描述

上面的指定了属性scroll,就会出现滚动的方框,不管超没超出高度。
stackoverflow: how-to-show-scroll-after-certain-height-but-height-should-not-be-fixed

.container{
  height: 263px;
  overflow-y: auto;
}
发布了126 篇原创文章 · 获赞 3 · 访问量 4555

猜你喜欢

转载自blog.csdn.net/Q10CAU/article/details/105428746