给框架加上滚动条
Dreamweaver 8如何给框架集添加滚动条?
只要右边有滚动条 要在设计试图完成要求
<frameset rows="210%,300%,50%" cols="*" frameborder="0" style="overflow:scroll;" >
<frame src="top.html" name="topFrame" scrolling="no" marginheight="0" noresize="true" marginwidth="0"/>
<frame src="zhong.html" name="leftFrame" scrolling="auto" marginwidth="0" noresize="true" marginheight="0" />
<frame src="footer.html" name="footerFrame" scrolling="auto" marginwidth="0" noresize="true" marginheight="0"/>
</frameset>
<noframes></noframes>
在frameset 标签内加上style="overflow:scroll;"这个样式就可以出现右边的整页滚动条了