为了账号安全,请及时绑定邮箱和手机立即绑定

JSP上中下结构CSS样式固定上下部分

JSP上中下结构CSS样式固定上下部分

九州编程 2019-05-11 07:06:58
如上图,个人小项目分上中下结构,在整个项目中,上(包括一级菜单部分)下部分固定不变,所有的其它页面(包括功能增加新建的页面)都包含在上下之间,我试着用<iframe>好像不行,请各位大神帮帮忙,最好能提供一下CSS样式代码。 

2 回答

?
SMILET

TA贡献1796条经验 获得超4个赞


1

2

3

4

5

6

7

8

9

10

</head>

 

<frameset rows="127,*,11" frameborder="no" border="0" framespacing="0">

  <frame src="top.jsp" name="topFrame" scrolling="No" noresize="noresize" id="topFrame" />

  <frame src="center.jsp" name="mainFrame" id="mainFrame" />

  <frame src="down.jsp" name="bottomFrame" scrolling="No" noresize="noresize" id="bottomFrame" />

</frameset>

<noframes><body>

</body>

</noframes></html>



1

2

3

4

5

6

7

8

9

10

11

12

</head>

<body style="margin:0px;padding:0px;overflow:auto; "  >

<table width="100%" height="100%" border="0" cellspacing="0" cellpadding="0" >

  <tr >

     

    <td valign="top" style="margin: 0px;"><iframe  height="100%" width="100%"  frameborder="0" src="<%=basePath%>" marginwidth="0" marginheight="0" name="rightFrame"></iframe></td>

   

  </tr>

</table>

</body>

</html>

第一次发的 叫mian   mian中的Center就是这个有问题Q


 




查看完整回答
反对 回复 2019-05-12

添加回答

代码语言

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信