<!DOCTYPE html>
<html><head><meta charset="utf-8" /><title></title><style>.div1{height: 200px;width: 200px;background-color: gray;/*相对定位 相对于自身原来的位置,移开之后,不会释放原点位置*/position: relative;top: 100px;left: 100px;}.div2{height: 200px;width: 200px;background-color: burlywood;position: relative;top: 100px;left: 100px;}</style></head><body><div class="div1">1</div><div class="div2">2</div></body>
</html>