HTML 框架
HTML iframe 用于在网页中显示网页。
HTML Iframe 语法
HTML<iframe>
标记指定内联框架。
内联框架用于在当前 HTML 文档中嵌入另一个文档。
句法
<iframe src="*url*" title="description"></iframe>
提示:最好始终title
包含<iframe>
.屏幕阅读器使用它来读出 iframe 的内容。
Iframe - 设置高度和宽度
使用height
和width
属性指定 iframe 的大小。
默认情况下,高度和宽度以像素为单位指定:
例子
<iframe src="demo_iframe.htm" height="200" width="300" title="Iframe Example"></iframe>
或者您可以添加style
属性并使用 CSSheight
和width
属性:
例子
<iframe src="demo_iframe.htm" style="height:200px;width:300px;" title="Iframe Example"></iframe>
Iframe - 删除边框
默认情况下,iframe 周围有边框。
要删除边框,请添加style
属性并使用 CSS border
属性:
例子
<iframe src="demo_iframe.htm" style="border:none;" title="Iframe Example"></iframe>
使用 CSS,您还可以更改 iframe 边框的大小、样式和颜色:
例子
<iframe src="demo_iframe.htm" style="border:2px solid red;" title="Iframe Example"></iframe>
Iframe - 链接的目标
iframe 可以用作链接的目标框架。
链接的属性target
必须引用name
iframe的属性:
例子
<iframe src="demo_iframe.htm" name="iframe_a" title="Iframe Example"></iframe>
<p><a href="https://www.codewhy.net" target="iframe_a">codewhy.net</a></p>
章节总结
- HTML
<iframe>
标签指定内联框架 - 该
src
属性定义要嵌入的页面的 URL - 始终包含一个
title
属性(对于屏幕阅读器) - 和
height
属性width
指定 iframe 的大小 - 用于
border:none;
删除 iframe 周围的边框