<!DOCTYPE html>
<html>
<head>
<title></title>
</head>
<style type="text/css">
.a{
width: 1000px;
background-color: #333;
overflow: auto;
}
.z{
width: 33.3333%;
float: left;
height: 100px;
border: 1px solid red;
}
.x{
width: 33.3333%;
height: 100px;
float: left;
border: 1px solid yellow;
}
.c{
width: 33.3333%;
height: 100px;
float: left;
border: 1px solid #fff;
}
</style>
<body>
<div class="a">
<div class="z"></div>
<div class="x"></div>
<div class="c"></div>
</div>
</body>
</html>
在不影响宽度的情况下 让div。c 浮动上去。 我依稀记得有一条属性可以做到,现在不记得了
愁晴
一步十年
小小酥1992
X_xiaob