比如我做了一个
<iframe src="http://www.baidu.com" style="border-style:none;" width="50px" height="50px"></iframe>
想嵌入 别人 0,0,50,50 这个区域的网页,有办法弄吗?
天蓬老师2017-04-11 12:16:10
<p style="wdith:50px;height:50px;overflow:hidden">
<iframe />
</p>
iframe外边套一层,在外边做隐藏,不要在iframe上做隐藏,这样是可以的。
PHP中文网2017-04-11 12:16:10
<p style="width:50px;height:50px;margin: 50px 0 0 50px;">
<iFrame src="http://www.baidu.com" scrolling="no">
</iFrame>
</p>
大概就是这么调吧 具体要哪儿你自己调好了