本文介绍了CSS相对位置/正常位置问题的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

根据w3schools,相对位置值定义如下:



relative - 元素相对于其正常位置定位,因此left:20添加20像素到元素的LEFT位置。



我知道我可以得到任何相对位置的DOM对象,使用它,我可以得到左边或顶部位置w / p>

我的问题是,如何获得正常的位置?



谢谢,



mj

解决方案

正常位置只是设置位置值到: static

  position:static 


According to w3schools, the relative position value is defined as follows.

relative - The element is positioned relative to its normal position, so "left:20" adds 20 pixels to the element's LEFT position.

I know that I can get the DOM object of whatever I positioned relatively and using that, I can get the left or top position w/ respect to the origin.

My question is, how can I get the "normal" position?

Thanks,

mj

解决方案

to normal position just set position value to: static

position:static

这篇关于CSS相对位置/正常位置问题的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-15 15:39