使iframe中的内容适合Mobile中的视口

时间:2018-09-27 06:46:25

标签: iframe

我有一个旧的html代码,它没有响应。
此内容必须适合移动设备中的iframe,尽管它不响应,但我们可以使其适合视口,而无需水平滚动条。

Example页面,其中包含iframe和旧代码。

   <!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <meta http-equiv="X-UA-Compatible" content="ie=edge">
    <title>IFrame Issue</title>
<style>
iframe{
  height:100%;
  width:100%;
}
</style>
</head>
<body>

  <iframe src="https://punithnpg.github.io/query/"></iframe>
</body>
</html>

0 个答案:

没有答案