HTML 参考手册
HTML <frame> marginheight 属性
第一个框架的上边距和下边距是 50 像素,第二个框架的上边距和下边距是 0 像素
源代码:
点击运行 »
<frameset cols="50%,50%"> <frame src="/examples/frame_a.htm" marginheight="50"> <frame src="/examples/frame_b.htm" marginheight="0"> </frameset>
运行结果:
点击运行 »