HTML的简单介绍(28)

添加 iframe 的语法

<iframe src="URL"></iframe>
URL 指向隔离页面的位置。

Iframe - 设置高度和宽度
height 和 width 属性是用来规定 iframe 的高度和宽度的。
属性值的默认单位是像素,但是也可以用百分比来设定。

Iframe - 删除边框
frameborder 属性规定是否显示 iframe 周围的边框。

设置属性值为 "0" 就可以移除边框

使用 iframe 作为链接的目标
iframe 可用作链接的目标(target)。

链接的 target 属性必须引用 iframe 的 name 属性

猜你喜欢

转载自blog.51cto.com/14583872/2445544