没用float,才绝对定位也是可以的吗?
我没有用float,我用的绝对定位。也能实现这样的要求,是可以用的吗?
<style type="text/css">
body{margin:0;padding:0;}/*清除一下默认样式*/
.top{height:100px;background:blue;}
.main{width:800px;height:700px;background:#ccc;margin:0 auto}
.right{width:300px;height:700px;background:#0066CC;position:absolute;}
.left{width:500px,height:700px;background:#00FF33;postion:absolute;}
.foot{width:800px;height:100px;background:#900;margin:0 auto}
</style>