我想在 iframe 中加载一个响应式设计网站作为我网站的页面之一。但是,当它加载到 iframe 中时,该站点会失去响应能力。
以 Mashable.com 为例(内置响应式设计)- 我的代码如下所示:
<body>
<style>
body {width:100%;height:100%;margin:0;overflow:hidden;background-color:#252525;}
#iframe {position:absolute;left:0px;top:0px;}
</style>
<iframe id="iframe" name="iframe1" frameborder="0" width="100%" height="100%" src="http://mashable.com"></iframe>
</body>
如果您在手机上访问 mashable.com,您会看到响应式设计的实际效果。但是,如果您在手机上访问上述页面,mashable 的响应式设计将无法正常工作。
有谁知道如何在 div 中加载网页并保持其响应式设计?
提前致谢!