How to get rid of the double scroll bar when using an iframe?

后端 未结 12 1434
耶瑟儿~
耶瑟儿~ 2021-02-07 00:19

I\'ve seen this problem on the web, and all the suggested solutions aren\'t working for me, so I thought I\'d come here.

I have a page that has an iframe. The top of the

12条回答
  •  生来不讨喜
    2021-02-07 01:13

    It's a little old for this question but I do hope this would help in the future.

    For my case, iframe inside the body and my body has the css overflow and set to hidden and yeah it caused a double scrollbar. Change it and it solved the problem.

    body {
      overflow-y: hidden;
      /* Change to auto */
    }
    

    Source for css overflow, css overflow

提交回复
热议问题