iframe嵌套网页
Posted 图书资与
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了iframe嵌套网页相关的知识,希望对你有一定的参考价值。
把iframe嵌套的网页放在某一位置,只需在iframe外加个框,改变框的位置即可,如:
<!doctype html> <html lang="zh"> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title></title> </head> <body> <div class="main"> <iframe src="http://www.bootcss.com/" onload="changeFrameHeight()" id="myiframe" scrolling="yes" frameborder="0"></iframe> </div> </body>
css如下:
<style type="text/css"> *{ padding: 0; margin: 0;} body{background: green} .main{ width: 80%; height: 500px; margin: 0 auto;} .main iframe{ display: block; width:100%; height: 100%;} </style>
效果如图:
以上是关于iframe嵌套网页的主要内容,如果未能解决你的问题,请参考以下文章