Blogger Information
Blog 9
fans 0
comment 0
visits 3775
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
3月27日作业
好的博客
Original
410 people have browsed it

双飞翼布局

<!doctype html>

<html>

<head>

<meta charset="UTF-8">

<title>经典的双飞翼布局</title>

<style type="text/css">

.header,.footer{

widows: 100%;

height: 65px;

background-color: lightgray;


}

.footer{

/*底部二边不能有浮动元素*/

clear:both;

}

.content{

/*总宽度1000*/

width: 1000px;

min-height: 100%;

background-color: gray;

/*使水平居中*/

margin: auto;

/*使其内部的文本水平垂直居中*/

text-align: center;

line-height: 60px;

}

/*设置主体的基本样式*/

.container {

/*设置主体的总宽度:非常关键*/

width: 1000px;


/*设置主体内部所有区块水平居中*/

margin:auto;


/*使当前区块能够包住内部的浮动区块*/

overflow: hidden;


/*设置背景参考色*/

background-color: yellow;

text-align: center;


}

/*设置中间的部分基本样式*/

.wrap{

width:100%;

background-color: lightgreen;

float: left;

}

/*main 的父级是wrap ,已经有了的样式,不要重复*/

.main{

/*最小高度*/

min-height: 600px;

/*左右宽200的简写*/

margin: 0 200px;

/*背景色为小麦色*/

background-color: wheat;

/*text-align: center; */

}

.left{

width: 200px;

min-height: 600px;

float: left;

/*//-100% 1000px ;*/

margin-left: -100% ; 

/*text-align: center;*/

background-color: red;


}


.right{

width: 200px;

min-height: 600px;

float: right;

/*//-100% 1000px ;*/

margin-left:  -200px ; 

background-color: red;

/*text-align: center;*/


}



</style>

</head>

<body>

<!-- DOM 结构内容 -->

<!-- 头部 -->

<div>

<div>网站头部</div>

</div>


<!-- 主体 -->

<div>

<!-- 再加一个区块,为了防止撑大父级盒子 -->

<div>

<div>主体</div>

</div>

<div>左侧</div>

<div>右侧</div>

</div>

<!-- 底部 -->

<div>

<div>网站底部</div>

</div>

</body>

</html>

圣杯布局

<!doctype html>

<html>

<head>

<meta charset="UTF-8">

<title>圣杯布局</title>

<style type="text/css">

.header,.footer{

width: 100%;

height: 60px;

background-color: lightgreen;

}


.footer{

clear: both;

}


.content{

width: 1000px;

height: 100%;

background-color: 100%;

margin: auto;

text-align: center;

line-height: 60px;


}

.container{

width: 600px;

background-color: yellow;

margin: auto;

overflow: hidden;

padding: 0 200px;

}

.main{

/*设置一个最小行高*/

min-height: 650px;


/*宽必必须为100%,即与父元素container一致,这样才能使left,right挤下来*/

width: 100%;

float:left;


/*设置参考背景色:小麦色*/

background-color: wheat; 

}

.left {

/*除main外,left和right必须设置宽度*/

width: 200px;

/*最小高度*/

min-height: 650px;


/*左浮动后,因为前面main占据100%宽度,所以自动挤到下一行首*/

float:left;


/*设置左外边距margin为-100%,使它回到main区块的起始点处*/

margin-left: -100%;


/*关键步骤:相对定位,向左为负200,相当于向右移动200px;*/

position: relative;

left: -200px;


/*设置参考背景色:天蓝色*/

background-color: lightskyblue; 

}

.right {

width: 200px;

min-height: 650px;

float:left;

margin-left:-200px;

position: relative;

/*right:-200px;*/

left: 200px;

/*设置参考背景色*/

background-color: lightgreen;

}

</style>

</head>

<body>

<!-- DOM结构部分 -->

<!-- 头 -->

<div>

<div>网站头部</div>

</div>

<!-- 主体(内容区) -->

<div>

<div>中间</div>

<div>左边</div>

<div>右边</div>

</div>

<!-- 尾部 -->

<div>

<div>网站尾部</div>

</div>

</body>

</html>

作业照片

777777777777777.jpg

Correction status:qualified

Teacher's comments:
Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!
All comments Speak rationally on civilized internet, please comply with News Comment Service Agreement
0 comments
Author's latest blog post