分页: 1/1 第一页 1 最后页 [ 显示模式: 摘要 | 列表 ]

div css中的clearfloat

[不指定 2008/11/24 11:37 | by Else ]
如果经常用div +css 难免会用到
clear:both;
我们会写一个.class 然后放链接到div上去,

今天还是要建个.class

.clearfloat {
    clear:both;
    height:0;
    font-size: 1px;
    line-height: 0px;
}

下面怎么用呢!

这样不是是省了代码,而又不会因为少另一边出了问题?!
Tags: , , , ,
其實這樣的例子很多,在dw cs3裡就就有很多我也是看那例子的
顯示地址
<!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 content="text/html; charset=utf-8" http-equiv="Content-Type" />
<style type="text/css">
* {
margin:0;
padding:0;
}

body {
height:100%;
}
.top {
  height: 100px;
  background-color:#FFC
}
.left {
  height: 600px;
  width: 150px;
  float: left;
  background-color:#CCCccc;
  
}
.main {
  height: 600px;
  margin-left: 160px;
  background-color:#F2F2F2;
}
.bottom {
  height: 100px;
  /*clear: both;可以不用吧*/
  background-color:#FFC
}
body {
  margin: 0px;
}
div {
  border: 1px solid #C0C0C0;
}
</style>
</head>

<body>

<div class="top">
</div>
<div>
<div class="left">
</div>
<div class="main">aaa
</div>
</div>
<div class="bottom">
</div>
</body>
</html>
Tags: , ,
分页: 1/1 第一页 1 最后页 [ 显示模式: 摘要 | 列表 ]