frame的头部的下拉列表如何才能显示在最上层
旭洪 2008-02-20 02:13:54 我做了一个框架页,头部有下拉列表.但是却给中部main的页面遮住了一部分。
如何才能让头部的下拉列表显示在最上层。。。。
该如何做
代码如下
<html>
<head>
<title>net</title>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
</head>
<frameset rows="98,*,38" cols="*" frameborder="no" border="0" framespacing="0">
<frame name="style_top" src="top.html" scrolling="no" noresize frameborder="no" >
<frameset rows="*" cols="150,*" frameborder="no" border="0" framespacing="0">
<frame name="style_left" src="left.html" scrolling="no" frameborder="no">
<frame name="style_main" src="main.html" scrolling="no" frameborder="no">
</frameset>
<frame name="style_bottom" src="bottom.html" scrolling="no" noresize frameborder="no" >
</frameset>
<noframes><body >
</body ></noframes>
</html>