当我尝试将一个框架集嵌套在另一个框架集内时,它不起作用。
我试过使用标签,但效果不是很好。
<frameset rows="15%,85%">
<frame style="background-color: orangered"></frame>
<frame style="background-color: saddlebrown">
<frameset cols="20%,*">
<frame style="background-color: teal">
<frameset rows="50%,*">
<frame style="background-color: violet"></frame>
</frameset>
</frame>
</frameset>
</frame>
</frameset>我希望它能拆分另一个已经提前divided.Thanks的帧。
发布于 2019-09-08 16:30:01
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN"
"http://www.w3.org/TR/html4/frameset.dtd">
<HTML>
<HEAD>
<TITLE>A simple frameset document</TITLE>
</HEAD>
<FRAMESET cols="20%, 80%"> <!--(1)-->
<FRAMESET rows="100, 200"> <!--(2)-->
<FRAME src="contents_of_frame1.html">
<FRAME src="contents_of_frame2.gif">
</FRAMESET>
<FRAME src="contents_of_frame3.html">
<!-- optional for browser which do not know frameset or blind peoples with text
readers as well as very dumb search engines -->
<NOFRAMES>
<P>This frameset document contains:
<UL>
<LI><A href="contents_of_frame1.html">Some neat contents</A>
<LI><IMG src="contents_of_frame2.gif" alt="A neat image">
<LI><A href="contents_of_frame3.html">Some other neat contents</A>
</UL>
</NOFRAMES>
<-- end optional -->
</FRAMESET>这可能会创建如下所示的框架布局:
---------------------------------------
| | |
| | |
| Frame 1 | |
| | |
| | |
|----(2)--| |
| | Frame 3 |
| | |
| (1) |
| | |
| Frame 2 | |
| | |
| | |
| | |
| | |
---------------------------------------https://stackoverflow.com/questions/57840163
复制相似问题