我有一个css代码.
为什么“底线:0”不起作用时,“位置:亲戚”
如果我放弃“位置:亲戚”到“底部”作品,但是“float:left”和“float:right”不在“width:930px;”中.
对不起我的英文不好
为什么“底线:0”不起作用时,“位置:亲戚”
如果我放弃“位置:亲戚”到“底部”作品,但是“float:left”和“float:right”不在“width:930px;”中.
对不起我的英文不好
<style type="text/css"> #main { position: relative; width: 930px; padding:10px; margin:0 auto; } #left { position:absolute; left:0; } #right { position:absolute; right:0; } #bottom { position: absolute; bottom:0; } </style> <div id="main"> <div id="left"> Left </div> <div id="right"> Right </div> <div id="bottom"> Bottom </div> </div>