positioning
-
I know that if you set absolute positioning on an element that you can set top: 0; left: 0; and get your element to the top left of the parent element. I tried doing top: 0; right: 0; to get the second column to go to the rop right, but that didn't work for some reason. Anyone got any tips on this?
you need to set a position of relative to the parent element
I did put position: relative; on the parent element.
Would simply floating it right not work in this situation?
do you have a live example we can take a look at?Add a Comment