div仿框架佈局之典型的兩欄佈局

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" 
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="zh-cn" lang="zh-cn">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta http-equiv="Content-Language" content="zh-cn" />
<title>div仿框架佈局之典型的兩欄佈局</title>
<meta name="Description" content="擺脫frameset的束縛,以div代替,通過css實現仿框架佈局" />
<meta name="Keywords" content="div佈局, div仿框架佈局, 兩欄佈局" />
<meta name="author" content="" />
<style type="text/css">
html,body{
overflow:hidden;
height:100%;
margin:0;
padding:0;
font:14px/1.8 Georgia, Arial, Simsun;
}
html{
_padding:110px 0;
}
#hd{
position:absolute;
top:0;
left:0;
width:100%;
height:100px;
background:#999;
}
#bd{
position:absolute;
top:110px;
right:0;
bottom:110px;
left:0;
overflow:hidden;
width:100%;
_height:100%;
}
#side{
position:absolute;
top:0;
left:0;
bottom:0;
overflow:auto;
width:200px;
_height:100%;
background:#666;
}
#main{
position:absolute;
_position:static;
top:0;
right:0;
bottom:0;
left:210px;
overflow:auto;
_overflow:hidden;
_height:100%;
_margin-left:210px;
background:#666;
}
#content{
_overflow:auto;
_width:100%;
_height:100%;
}
#ft{
position:absolute;
bottom:0;
left:0;
width:100%;
height:100px;
background:#999;
}
/* 與佈局無關,一些說明性內容樣式 */
.tit-layout{margin:30px 0 0;font-size:18px;text-align:center;}
.copyright{font-weight:bold;text-align:center;}
#feature{width:200%;line-height:4;}
#feature .hd{padding:20px 15px;}
#feature .hd h2{margin:0;font-size:16px;}
#feature .bd ol{margin-top:0;}
#feature .bd h3{margin:0;padding:0 15px;font-size:14px;}
#feature .ft{padding:10px 15px 30px;}
</style>
</head>
<body>
<div id="hd">
<h1 class="tit-layout">div仿框架佈局之典型的兩欄佈局Version2.0(Private)</h1>
</div>
<div id="bd">
<div id="side">側邊欄</div>
<div id="main">
<div id="content">
<div id="feature" class="feature">
<div class="hd">
<h2>div仿框架佈局Version2.0的特徵:</h2>
<span>update: 2008.09.22</span>
</div>
<div class="bd">
<h3>優點:</h3>
<ol>
<li>以div代替frameset,用css實現仿框架佈局</li>
<li>在web標準模式Standard Mode下運行</li>
<li>兼容IE6,7,8; Firefox; Chrome; Safari; Opera瀏覽器,沒被列入的瀏覽器未測試</li>
<li>內容欄區域可以允許出現寬爲100%或超100%的元素,如:
<p><div class="main"><div style="width:100%;"></div></div></p>
<p><div class="main"><iframe style="width:100%;"></iframe></div></p>
</li>
<li>適用於:後臺;郵箱等地方</li>
</ol>
</div>
<div class="ft">
<a href="http://blog.doyoe.com/" title="去css探索之旅瀏覽更多div佈局文章">More</a>
</div>
</div>
</div>
</div>
</div>
<div id="ft">
<address class="copyright">Copyright © <a href="http://blog.doyoe.com/">doyoe.com</a></address>
</div>
</body>
</html>

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章