iframe的使用写个demo,主页面嵌套三个子页面
时间: 2023-08-15 16:05:38 浏览: 173
iframe使用实例
5星 · 资源好评率100%
当然,我可以帮你写一个简单的demo来演示如何使用iframe来嵌套三个子页面。以下是一个示例代码:
```html
<!DOCTYPE html>
<html>
<head>
<title>IFrame Demo</title>
<style>
#wrapper {
display: flex;
justify-content: space-between;
height: 500px;
}
.frame {
width: 30%;
height: 100%;
border: none;
}
</style>
</head>
<body>
<div id="wrapper">
<iframe class="frame" src="page1.html"></iframe>
<iframe class="frame" src="page2.html"></iframe>
<iframe class="frame" src="page3.html"></iframe>
</div>
</body>
</html>
```
上面的代码创建了一个包含三个子页面的主页面。每个子页面由一个iframe元素表示,并通过src属性指定要加载的页面URL。这里的例子中,我们假设有三个子页面,分别是 `page1.html`、`page2.html`和 `page3.html`。
在CSS部分,我们使用了flex布局来将三个iframe元素水平排列,并设置了一个高度为500像素的父容器。
你可以根据需要修改每个子页面的内容和样式。希望这个demo能对你有所帮助!如果你还有其他问题,请随时提问。
阅读全文