8-17

黄健的博客
黄健的博客原创
2018年08月19日 22:02:26664浏览

<!DOCTYPE html>

<html>

<head>

<meta charset="UTF-8">

<title>双飞翼布局</title>

</head>

<body>

<style  type="text/css" >

.header,.footer{

width: 100%;

height:60px;

background: #efefef;

}


.footer {

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

            clear: both;

        }



.content{

width: 1000px;

min-height: 100%;

background: gray;

margin: auto;

text-align: center;

line-height: 60px;


}


.container{

width: 1000px;

margin: auto;


overflow: hidden;

background-color: yellow;

/*overflow: ;*/

}

.wrap{

width: 100%;

background-color:cyan;

float: left;

}


.main{

min-height: 600px;

margin: 0 200px;

background-color: wheat;

}

  



.left{


width: 200px;

min-height: 600px;


float: left;

margin-left: -100%;

background-color: blue;

}



.right{


width: 200px;

min-height: 600px;

float: left;

margin-left: -200px;

background-color: blue;

}





</style>




<div>

    <div>网站头部</div>

</div>


<!-- 主体 -->

<div>


    <div>

        <div>主体内容区</div>

    </div>


    <div>左侧</div>


    <div>右侧</div>

</div>


<!-- 底部 -->

<div>

    <div>网站底部</div>

</div>



</body>

</html>


声明:本文内容转载自脚本之家,由网友自发贡献,版权归原作者所有,如您发现涉嫌抄袭侵权,请联系admin@php.cn 核实处理。
全部评论
文明上网理性发言,请遵守新闻评论服务协议