【发布时间】:2021-12-13 05:36:52
【问题描述】:
我知道如果我使用孩子的位置作为相对位置,我可以将孩子的位置移动到父母身上。像这样:
#child{
position: relative;
left: 30px; }
有时我看到父母的位置是相对的,而孩子的位置是绝对的。像这样。
#parent{
position: relative;
}
#child{
position: absolute;
left: 30px;
}
但这两者有什么不同呢?
【问题讨论】:
标签: html css position css-position