码迷,mamicode.com
首页 > Web开发 > 详细

【Web开发】一、页面布局

时间:2014-11-26 14:10:59      阅读:128      评论:0      收藏:0      [点我收藏+]

标签:style   blog   io   ar   os   sp   on   div   log   

一、Frame

<frameset id="topFrameSet" rows="69,*" border="0" framespacing="0" frameborder="0">
    <frame name="topframe" src="frameTop.html" scrolling="No" noresize="noresize" id="topFrame" />
    <frameset id="mainFrameSet" cols="142,1,*" border="0" framespacing="0" frameborder="0">
        <frameset id="leftFrameSet" rows="22,*,0" frameborder="no" border="0" framespacing="1">
            <frame name="lefttop" noresize="noresize" border="0" src="frameLeftTop.html" scrolling="no"
                style="border-right: 1px solid #6c9ede;" />
            <frame name="leftmenu" src="leftMenuMyTask.html" frameborder="0" scrolling="no" noresize="noresize"
                border="0" target="right" style="border-right: 1px solid #6c9ede;" id="leftmenu" />
            <frame name="leftdn" noresize="noresize" border="0" src="frameleftdown.html" frameborder="0" />
        </frameset>
        <frame name="midline" src="midLine.html" scrolling="No" noresize="noresize" id="midline" />
        <frameset id="rightframeset" border="0" framespacing="0" rows="24,*" frameborder="0">
            <frame name="rightup" src="frameShowPos.html" noresize="noresize" frameborder="0"
                scrolling="no" />
            <frame name="right" id="right" src="../application/default.html" frameborder="0"
                scrolling="yes" class="right_scroll" />
        </frameset>
    </frameset>
</frameset>

二、DIV

<body>
<div id="container">
  <div id="header">This is the Header</div>
  <div id="menu">This is the Menu</div>
  <div id="mainContent">
    <div id="sidebar">This is the sidebar</div>
    <div id="content">2列左侧固定,右侧自适应宽度+头部+导航</div>
  </div>
</div>
</body>

body { font-family:Verdana; font-size:14px; margin:0;}

#container {margin:0 auto; width:100%;}
#header { height:100px; background:#9c6; margin-bottom:5px;}
#menu { height:30px; background:#693; margin-bottom:5px;}
#mainContent { height:500px; margin-bottom:5px;}
#sidebar { float:left; width:200px; height:500px; background:#cf9;}
#content { margin-left:205px !important; margin-left:202px; height:500px; background:#ffa;}

 

【Web开发】一、页面布局

标签:style   blog   io   ar   os   sp   on   div   log   

原文地址:http://www.cnblogs.com/illday/p/4122993.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!