我开发个系统是做成整个页面显示的,用了上中下框架,上下框架没有滚动条,中间的有,但是滚动条就占了距离,导致上下框架内的页面不能100%的占浏览器宽度显示。但是单独打开上下框架中的页面是可以全部宽度显示的,现在即使把中间框架滚动条去了也还有一个滚动条的距离,请问这个要怎么处理。
附我使用的框架源码:
<frameset rows="141,410,40" cols="1003" framespacing="0" frameborder="no" border="0" >
<frame src="top.jsp" name="topFrame" scrolling="No" noresize="noresize" marginwidth="0" id="topFrame" />
<frame src="index.jsp" name="mainFrame" scrolling="auto" noresize="noresize" marginwidth="0" id="mainFrame"/>
<frame src="bottom.html" name="bottomFrame" scrolling="No" noresize="noresize" marginwidth="0" id="bottomFrame"/>
</frameset>
