css中相对定位和绝对定位

相对定位:

#box_relative { position: relative; left: 30px; top: 20px; }

绝对定位:


#box_relative { position: absolute; left: 30px; top: 20px; }

原文地址:https://www.cnblogs.com/loaderman/p/9993554.html