谁可以给我介绍一个把网页分成左右两边的教程啊

解决方案 »

  1.   

    http://www.w3school.com.cn/html/html_frames.asp
      

  2.   

    要啥教程啊,就是个Frame,等着,我给你发
      

  3.   

    frameset
      

  4.   


    <frameset rows="100,*,18,0" border="0" framespacing="0" frameborder="0">
    <frame src="top.aspx" frameborder="0" scrolling="no" name="top" marginwidth="0" marginheight="0" noResize>       <!--头页-->
    <frameset cols="209,*,0,0,0,0" id="Menu_frame"> 
    <frame src="Left/Left.aspx" frameborder="0" scrolling="yes" name="left" noResize id="left" marginwidth="0" marginheight="0" style="BORDER-BOTTOM: #aeaeae 1px solid;BORDER-left: #aeaeae 1px solid;BORDER-top: #aeaeae 1px solid;BORDER-RIGHT: #ffffff 1px solid">         <!--左边-->
    <frame src="webGlobalFlow.aspx" frameBorder=0 name="middle" style="border-width:1px;border-style:solid;border-color:#aeaeae;">  <!--中间-->
    <frame src="about:blank" frameBorder=0 scrolling=no marginwidth="0" marginheight="0">                   <!--在执行后无明显不同-->
    <frame src="about:blank" name="msg" frameBorder=0  scrolling=no marginwidth="0" marginheight="0">          <!--在执行后无明显不同-->
    <frame src="about:blank" frameBorder=0  scrolling=no name="hidden_top" marginwidth="0" marginheight="0">            <!--在执行后无明显不同-->
    <frame src="about:blank" name="checkdstx" frameBorder=0  scrolling=no  marginwidth="0" marginheight="0">              <!--在执行后无明显不同-->
    </frameset>
    <frame src="bottom.aspx" frameborder="0" scrolling="NO" name="bottom" noResize marginwidth="0" marginheight="0" style="BORDER-right: #aeaeae 1px solid;BORDER-BOTTOM: #aeaeae 1px solid;BORDER-left: #aeaeae 1px solid;">   <!--底页-->
    <frame src="about:blank" frameborder="0" scrolling="NO" name="zeroArea" marginwidth="0" marginheight="0">           <!--在执行后无明显不同-->
    <frame src="about:blank">            <!--在执行后无明显不同-->    <noframes>
         <body bgcolor="#FFFFFF">
    <table width="100" border="4" align="left" cellpadding="10" cellspacing="2">
    <tr>
    <td><p align="center"><font color="#0000FF">浏览器功能支持限制</font></p>
    <p>&nbsp&nbsp&nbsp&nbsp非常抱歉,您的浏览器不支持框架模式,无法使用本模块,请使用支持框架的浏览器。</p>
    <p><font color="#FF0000">*</font> <font color="#000099">建议使用 Internet Explorer 6.0 
    或版本更高的浏览器使用本模块。</font></p>
    </td>
    </tr>
    </table>
    </body>
        </noframes>
       </frameset>
    这个不止为左右,是分上下左右中
      

  5.   

    gogogo