1、index.html页
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>无标题文档</title>
</head><body>
<table width="100%" height="100%">
<tr>
   <TD><IFRAME FRAMEBORDER="0" NAME="right" ID="right" SRC="mainFrameset.html" STYLE="height:100%; width:100%" SCROLLING="no"></IFRAME>
</TD>
  </tr>
 </table>
</body>
</html>2、mainFrameset.html页
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title></title></head><frameset id="framesetId" rows="*,120" frameborder="yes" border="3" framespacing="0">
  <frame src="1.html" id="display1" name="display1" scrolling="no">
  <frame src="2.html" id="display2" name="display2" scrolling="NO">
</frameset>
<noframes>
<body>
</body>
</noframes>
</html>3、1.html页
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>无标题文档</title>
</head><body>
hello,第一页。
</body>
</html>4、2.html页
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>无标题文档</title>
</head><body>
hello,第二页。
</body>
</html>发现,不能移动分隔线。
请问,有谁遇到过这种问题,以及应该怎样解决不能移动分隔线问题。