使用iframe来让页面嵌入到div中

使用iframe来让页面嵌入到div中

<!DOCTYPE html>
<html>
  <head>
<style>
  .content{
    width: 100%;
    height: 100%;
  }
  p{
    text-align: center;//里面行内元素居中
    border: aqua 10px solid;
  }
  div{
    margin:auto;//里面块状元素居中
    border: springgreen 10px solid;
    height: 900px;
    width: 900px;
  }
</style>
  </head>
  <body>
    <p>
      上边
    </p>
    <div>
      <iframe class="content" src="https://www.baidu.com"></iframe>
    </div>
    <p>下边</p>
  </body>
</html>

效果如下:

猜你喜欢

转载自blog.csdn.net/Handsome2013/article/details/108785562