标签: html css
我有2个div,想要在它们之上添加div。 CSS属性对此有何帮助?
答案 0 :(得分:0)
http://jsfiddle.net/L6yRZ/
position: absolute; top: 50px; left: 50px;
绝对位置将元素定位在正常流量之外,相对于位置不是fixed的最近祖先。 top使前50px低于祖先,而left使左前50px位于祖先的左边缘。
fixed
top
left