導致 iframe 里面的內容會把我下面的兩個按鈕一直懟到最下面,加載的時候按鈕是有的 等到 iframe 里的內容加載完成后 那兩個按鈕就不顯示了
解決方法:
由於我在iframe 標簽外加了的div上加了margin-top:3%;height:45%;
樣式,所以需要在加上overflow:hidden;
關鍵代碼:
<div style="margin-top:3%;height:45%;overflow:hidden; -webkit-overflow-scrolling: touch;overflow-y: scroll;" >
<iframe src="/Pages/MobilePage/Announcement.html" align="middle" scrolling="auto" -webkit-overflow-scrolling="touch"
frameborder="0" allowTransparency="true" style="height:100%;width:92%"></iframe>
</div>