你这里所说的浮动是不是就是想让某一个层在其它层之上呢?如果是这样的话,可以用positon里的绝对定位来实现。比如:a想相对于b来做绝对的定位,就可以这样写:
.a{
width: 288px;
height: 263px;
background: url(../images/foot_pic.gif) no-repeat center center;
position: absolute;
top: -20px;
right: -33px;
}
.b
{
width: 968px;
margin: auto;
position: relative;
}
float:left;display:inline
这样就行了,IE6会双倍
float:left,就是左浮动啊
你的LI里面是上面蓝色斜体加下划线的字吗?