<!doctype html>
< html >
< head >
< meta charset = "UTF-8" >
< title >Document</ title >
< style >
body{
margin:0;
padding:0;
}
#wrap {
overflow: hidden; *zoom: 1;
}
#content ,#sidebar {
#eee;
}
#sidebar {
float: left; width: 300px;
background-color:pink;
position:fixed;
top:50px;
left:0;
}
#content {
margin-left: 310px;
height:1000px;
background-color:#e456aa;
margin-top:50px;
}
#footer {
background-color: #f00;
color:#fff;
margin-top: 1em;
}
</ style >
</ head >
< body >
< div style = "width:100%;height:50px;line-height:50px;background-color:#ccc;position:fixed;top:0;left:0;" >这是头部:web前端开发大全</ div >
< div id = "wrap" >
< div id = "sidebar" style = "height:600px;" >固定宽度区:微信号:jingfeng18</ div >
< div id = "content" style = "height:1340px;" >自适应区</ div >
</ div >
< div id = "footer" >这是尾部,想写什么就写什么,这是一个神奇的地方</ div >
</ body >
</ html >
|