使DIV的高度或者宽度固定,当内容超出固定高度时,出现自动滚动条来展示内容

1,021 阅读1分钟
div {
 
  height: 100px;
 
  overflow-y: scroll; // 垂直滚动条
 
}

div {
 
  width: 100px;
 
  overflow-x: scroll; // 水平滚动条
 
}

在设置对应滚动条时需要设置对应宽高否则无效