Overflow:hidden not working in safari browser

2019-09-01 06:31发布

问题:

I applied Overflow:hidden to <body> and <html> tags to stop scrolling of page when popup element is clicked this property working fine for me in almost every browser but not in Safari I googled for this solution but cannot find a solution to this so please someone help me in solving this thanks in advance

回答1:

Could you try adding the overflow to the Body and the HTML tag?

html,
body {
    overflow: hidden;
}