上-(左中右)-下 固定宽度且居中布局

通过上一节的《上-(左右)-下 固定宽度且居中布局》基础,站长地带进一步加深,实现上-(左中右)-下 固定宽度且居中布局。

效果如下:

上-(左中右)-下 固定宽度且居中布局

代码如下:

 

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html xmlns="http://www.w3.org/1999/xhtml">

<head>

<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />

<title>上-(左中右)-下 固定宽度且居中布局 站长地带www.zzarea.com</title>

<style type="text/css">

*{

margin:0px;

padding:0px;

}

.head{

width:1000px;

margin:0 auto;

margin-bottom:10px;

height:60px;

background-color:#999;

}

.center{

width:1000px;

margin:0 auto;

margin-bottom:10px;

height:400px;

}

.left{

width:600px;

background-color:#999;

height:400px;

float:left;

margin-right:10px;

}

.mid{

width:200px;

background-color:#999;

height:400px;

float:left;

margin-right:10px;

}

.right{

width:180px;

background-color:#999;

height:400px;

float:left;

}

.foot{

width:1000px;

margin:0 auto;

height:60px;

background-color:#999;

}

</style>

</head>

 

<body>

<div class="head"></div>

<div class="center">

<div class="left"></div>

<div class="mid"></div>

<div class="right"></div>

</div>

<div class="foot"></div>

</body>

</html>

备注,本节的效果不错,学员都掌握了,部分已经有了写法思路,会灵活执行,部分用了清除浮动实现效果,非常好

 

本文链接:https://www.dnwfb.com/974.html,转载请注明出处。
0

评论0

没有账号? 注册  忘记密码?