<html>
<head>
<meta HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=gb2312">
<link rel="stylesheet" type="text/css" href="common.css">
<title>开发银行WEB</title>
</head><frameset rows="26,*" frameborder="0">
  <frame name="top" scrolling="no"  noresize target="contents" src="/pathweb/web/top.htm">
  <frameset cols="155,*"   frameborder="0">
    <frame name="contents" noresize target="main" src="/pathweb/web/menu.htm">
    <frame name="main" src="/pathweb/web/welcome.jsp">
  </frameset>
  
  <body>  <p>此网页使用了框架,但您的浏览器不支持框架。</p>  </body>
  </noframes>
</frameset></html>难道这样不可以吗?我在ie里面是可以的,但是在netsape里就不好用了

解决方案 »

  1.   

    写法不正规,而IE太宽宏大量。
    link似乎应当在框架所包含的网页内。
    frameset与noframes元素互相交叉。<html>
    <head>
    <meta HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=gb2312">
    <title>开发银行WEB</title>
    </head>
    <frameset rows="26,*" frameborder="0">
      <frame name="top" scrolling="no"  noresize target="contents" src="/pathweb/web/top.htm">
      <frameset cols="155,*"   frameborder="0">
        <frame name="contents" noresize target="main" src="/pathweb/web/menu.htm">
        <frame name="main" src="/pathweb/web/welcome.jsp">
      </frameset>
    </frameset>
      <noframes>
       <p>此网页使用了框架,但您的浏览器不支持框架。</p>
      </noframes>
    </html>
      

  2.   

    应该没有问题,是不是你的css文件本身有问题啊