有时候,我们想插入网页,但只想要特定区域网页插入进来,于是就可以用如下办法:
1 2 3 4 5 6 7 8 9 10 |
<html> <head> <title>插入网页特定区域</title> </head> <body> <div style="width:1000px;height:650px;margin:-153px 0px 0px -10px;"> <iframe src= "http://www.weather.com.cn/satellite/" width="1200" height="650" frameborder="0" scrolling="no" style="position: absolute; top: -130px; left: 10px; right:10"></iframe> </div> </body> </html> |
效果: