Float a div above page content
You want to use absolute positioning. An absolute position element is positioned relative to the first parent element that has a position other than static. If no such element is found, the containing block is html For instance : To get it to work, the parent needs to be relative (position:relative) In your case this should … Read more