不知道能不能帮到你
position:absolute是相对于已经定位的父级容器 如果父容器已定位absolute或是relative 容器里的元素可以起作用
下面给个小例子:
*{margin:0; padding:0;}
#container {width:512px; height:384px; background:#aaa; margin:0 auto; position:relative;}
#inner{width:200px; height:200px; background:#eee; position:absolute; left:50px;}