When applying a new CSS translate, it's common practice to specify the exact number of pixels you want an element to move, such as 50px, 60px
. This results in a relative movement from its current position. You can see an example of this here: http://jsfiddle.net/8CECx/. The divs stay positioned next to each other.
But is there a way to achieve absolute positioning? For instance, being able to command an element to "move to 30px 50px" and have two elements overlap perfectly?
Thank you for any insights on this matter :)