我有一个具有相对样式位置的父 div,并且在该 div 内有几个具有绝对样式的 div
<div id="container" style="position:relative;width=400px;height=400px;">
<div style="top:20px;left:20px;width:20px;height:20px;"></div>
<div style="top:40px;left:40px;width:20px;height:20px;"></div>
<div style="top:60px;left:60px;width:20px;height:20px;"></div>
</div>
如何使用id="container"
with将新 div 添加到 div top="0px" left="0px"
?