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