我在顶部框架中有一个带有工具栏的页面。我想要除工具栏和它所接壤的两个框架之间的所有其他框架之间的边框。
<html><head><title>Test</title></head>
<frame src="toolbar.html" name="toolbar">
<frameset rows="44%,*">
<frameset cols="50%,50%">
<frame src="frame1.html" name="frame1">
<frame src="frame2.html" name="frame2">
</frameset>
<frameset rows="28%,28%" cols="50%,50%">
<frame src="frame3.html" name="frame3">
<frame src="frame4.html" name="frame4">
<frame src="frame5.html" name="frame5">
<frame src="frame6.html" name="frame6">
</frameset></frameset></html>
那么,我将如何删除“工具栏”和“frame1”/“frame2”之间的边界,同时保留所有其他边界(包括 frame1 和 frame2 之间的边界)?如果可以的话,我愿意使用 iframe,但我需要查看代码示例,因为我从未使用过它们。