In mobile devices using chrome in android, when I scroll down the modal and the address bar disappears, white space appears at the bottom
问题 function openModal() { document.getElementById("my-modal").style.display = "block"; document.querySelector("nav").style.display = "none"; document.querySelector("body").style.overflow = "hidden"; } function closeModal() { document.getElementById("my-modal").style.display = "none"; document.querySelector("nav").style.display = "block"; document.querySelector("body").style.overflow = "auto"; } html { height: 100%; } body { position: relative; min-height: 100%; overflow-x: hidden; margin: 0;