How to remove the absolute position effect by using media query?

I’m making two sections(section.left and section.right) on each side of the footer. I wrapped two sections with a div , and set absolute position for section.right with relative position for the div. What I’m trying to do is use media query to align two sections in column for RWD uses, however it just didn’t work.
I’ve tried not to set absolute position for section.right, and it would align correctly in media query effect, but can’t put it in the right side that I want on normal screen size.
Is there way to solve?

the default is position: relative so when you don’t want it to be absolute you can set it back to default

1 Like

Default is position:static, but for many cases it won’t make much of a difference.

This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.