Vertical Scrollbar leads to horizontal scrollbar

后端 未结 5 1221
遇见更好的自我
遇见更好的自我 2020-12-15 03:12

My CSS looks like this:

div.SOMECLASS {
  position: absolute;
  max-height: 300px
  height: auto;
  width: auto;
  overflow: auto;
  ...
}

5条回答
  •  野趣味
    野趣味 (楼主)
    2020-12-15 03:58

    Often setting 100vw is the problem. Just remove it and your width will be 100%, which will be what you want anyways.

提交回复
热议问题