#ipad浏览器#网页使用iframe的问题,发现iframe设置的高度和宽度都没用了,被ifram
发布网友
发布时间:2023-01-10 07:35
我来回答
共1个回答
热心网友
时间:2023-10-25 06:14
<head>
<style>
body{
-webkit-transform: translate3d(0, 0, 0);
}
div{
-webkit-overflow-scrolling:touch;
overflow:auto;
}
</style>
</head>
<body>
<div style="height:600px;width:600px">
<iframe></iframe>
</div>
<div style="height:600px;width:600px">
<iframe></iframe>
</div>
<div style="height:600px;width:600px">
<iframe></iframe>
</div>
</body>