我在一个容器 div 中有两个 div。它们使用彼此相邻的绝对定位进行定位。它们的宽度总是相同的,容器 div 的宽度总是相同的。这是好习惯吗?或者我应该使用 float:left 和 float:right 吗?
CSS看起来像这样:
#container
{
margin:0 auto;
height:100%;
width:960px;
}
#left
{
position:absolute;
top:0px;
left:0px;
bottom:0px;
width:25%;
height:100%;
}
#right
{
position:absolute;
top:0px;
left:25%;
bottom:0px;
right:0px;
width:auto;
height:100%;
}
这是好习惯吗?如果我想使用相对定位,使用相对定位定位的元素不能重叠,可以吗?我的意思是,他们知道他们每个人在哪里,对吧?
感谢:D