Reputation: 538
I am using sweetalert js but when alert is popped up, page scroll, I tried to position:absolute but not working
Upvotes: 2
Views: 4397
Reputation: 1200
The same issue happened when I clicked on a tag with href='#'
. So, if your code is the same, just replace a
tag with other tags like span
, button
...
Upvotes: 0
Reputation: 9489
Add this CSS to your stylesheets:
html.swal2-shown,body.swal2-shown { overflow-y: hidden !important; height: auto!important;}
Upvotes: 0