论坛交流
首页办公自动化| 网页制作| 平面设计| 动画制作| 数据库开发| 程序设计| 全部视频教程
应用视频: Windows | Word2007 | Excel2007 | PowerPoint2007 | Dreamweaver 8 | Fireworks 8 | Flash 8 | Photoshop cs | CorelDraw 12
编程视频: C语言视频教程 | HTML | Div+Css布局 | Javascript | Access数据库 | Asp | Sql Server数据库Asp.net  | Flash AS
当前位置 > 文字教程 > div+css教程
Tag:css,入门,技巧,div,实例,示例,菜单,布局,web2.0,ul,li,经验,列表,web标准,xhtml,web标准,浏览器,兼容,css hack,表格,视频教程

DIV+CSS教程_一行三列的定位浮动问题

文章类别:div+css | 发表日期:2010-5-6 10:26:30

DIV+CSS教程_一行三列的定位浮动问题

代码:
<!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>如何让“copyriht” 居在Left容器底部</title>
</head>
<style>
#wrap { width:1000px;}
#left { width:200px; float:left;position:relative;background:blue;}
#sidebar { width:200px;float:left; position:relative;background:black;}
#content{ width:600px;float:right; position:relative;background:#333;}
</style>
<body>
<div id="wrap">
    <div id="left">left<div id="copyright">Copyright</div></div>
    <div id="sidebar">center</div>
    <div id="content">right</div>
</div>
</body>
</html>
解决方法
如果wrap高度不固定的话,可以在wrap下再加个div,然后#copyright绝对定位,利用top负值缩进。
<!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>如何让“copyriht” 居在Left容器底部</title>
</head>
<style>
body,html{color:#FFF;}
#wrap { width:1000px;}
#left { width:200px;  height:500px; float:left;position:relative;background:blue;}
#sidebar { width:200px;  height:500px;float:left; position:relative;background:black;}
#content{ width:600px;  height:500px;float:right; position:relative;background:#333;}
#footer{position:relative;}
#copyright{position:absolute; top:-45px; left:0}
.clear{clear:both}
</style>
<body>
<div id="wrap">
    <div id="left">left</div>
    <div id="sidebar">center</div>
    <div id="content">right</div>
</div>
<div class="clear"></div>
<div id="footer"><p id="copyright">Copyright</p></div>
</body>
</html>
视频教程列表
文章教程搜索
 
div+css推荐教程
div+css热门教程
看全部视频教程
购买方式/价格
购买视频教程: 咨询客服
tel:15972130058