HTML <frame> 标签的 marginheight 属性 详解
HTML基础 2023-07-12 16:05:08小码哥的IT人生shichen
HTML <frame> 标签的 marginheight 属性
实例
第一个框架的上边距和下边距是 50 像素,第二个框架的上边距和下边距是 0:
<html>
<frameset cols="50%,50%">
<frame src="frame_a.htm" marginheight="50" />
<frame src="frame_b.htm" marginheight="0" />
</frameset>
</html>
完整实例【亲自试一试】:
<html>
<frameset cols="50%,50%">
<frame src="/demo/example/html/frame_a.html" marginheight="50" />
<frame src="/demo/example/html/frame_b.html" marginheight="0" />
</frameset>
</html>
可以使用本站在线JavaScript测试工具测试上述代码运行效果:http://www.phpcodeweb.com/runjs.html
定义和用法
marginheight 属性规定框架内容与框架的上方和下方之间的高度,以像素计。
语法
<frame marginheight="value">
属性值
值 | 描述 |
---|---|
pixels | 规定框架的上边距和下边距。 |